摘要: 可能是eclipse目录下eclipse.ini文件的设置上有问题,一般的ini文件设置主要包括以下几项: -vmargs-Xms40m-Xmx256m-XX:PermSize=64M-XX:MaxPermSize=128M 以下解释其意思。-vmargs:说明后面是VM的参数-Xms40m:虚拟机... 阅读全文
posted @ 2015-05-12 12:41 苗苗的编程世界 阅读(694) 评论(0) 推荐(0) 编辑
摘要: 开发过程中环境只要配置好了,如果没有出现什么意外的话JRE工作环境一般是不会有问题的。the specified jre installation does not exist这个问题也算把我这菜鸟害得差点就重装了系统。特此谨记。。。当Eclipse启动项目时弹出个error:the specifi... 阅读全文
posted @ 2015-05-12 10:15 苗苗的编程世界 阅读(2757) 评论(0) 推荐(0) 编辑
摘要: http://www.server110.com/linux/201404/8905.htmlhttp://blog.csdn.net/zhangliang_571/article/details/23878343 阅读全文
posted @ 2015-01-06 15:57 苗苗的编程世界 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 转载http://blog.chinaunix.net/uid-20554039-id-3035417.html我们经常在linux要查找某个文件,但不知道放在哪里了,可以使用下面的一些命令来搜索。这些是从网上找到的资料,因为有时很长时间不会用到,当要用的时候经常弄混了,所以放到这里方便使用。 wh... 阅读全文
posted @ 2014-12-31 10:58 苗苗的编程世界 阅读(91) 评论(0) 推荐(0) 编辑
摘要: package com.lanyuan.log;public class Test1 { private TNode head; private int size; private TNode last; public int size() { return t... 阅读全文
posted @ 2014-12-22 10:33 苗苗的编程世界 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 1 public class ByteToBinary { 2 /** 3 * 把byte数组转化成2进制字符串 4 * @param bArr 5 * @return 6 */ 7 ... 阅读全文
posted @ 2014-12-22 10:02 苗苗的编程世界 阅读(400) 评论(0) 推荐(0) 编辑
摘要: public class Test { public static void main(String[] args) { int start = -131; int end = 131; for (int i = start; i < end; i++... 阅读全文
posted @ 2014-12-22 09:55 苗苗的编程世界 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 一、1.1、提交中文,接受参数会出现乱码,出现乱码的原因是什么?1.2、如果使用get方式提交中文,如何保证取到正确的结果?1.3、如果使用post方式提交中文,如何保证取到正确的结果?1.4、如何保证jsp页面上显示中文不出现乱码?1.1 Java和JSP文件本身编译时(Java和JSP编译成... 阅读全文
posted @ 2014-12-22 09:25 苗苗的编程世界 阅读(154) 评论(0) 推荐(0) 编辑