1.
自己不太喜欢Eclipse按回车后自动插入参数的默认选项。可以在Window-Preferences-Java-Editor-Content
Assist选项里,将Fill method arguemnts and show guessed arguemnts复选框取消即可。2. 字体大小和颜...
分类:
系统相关 时间:
2014-05-21 20:47:16
阅读次数:
440
在查看alert日志的时候发现: 1
*********************************************************************** 2 3
Fatal NI connect error 12170. 4 5 VERSION INFORMATI...
分类:
其他好文 时间:
2014-05-21 20:13:32
阅读次数:
298
因为最近想做一个小小的外挂,随便做个界面,但是这java的界面实在是让人难受,所以就想到了用可视化拖拉控件的试试,找到个叫"windowbuilder"
,以前叫做swt,免费的Eclipse插件,详细就不介绍了,给Google收购了,所以改名了WindowBuilder Pro,作为Google的...
分类:
编程语言 时间:
2014-05-21 19:31:30
阅读次数:
251
在移植eclipse项目时,如果遇到“Project facet Java version 1.7
is not
supported.”项目中的jdk1.7不支持。说明项目是其他版本jdk编译的,在eclipse里运行时会报版本不支持。解决办法:法1,选中项目Properties
,选择Projec...
分类:
编程语言 时间:
2014-05-21 17:35:03
阅读次数:
295
context.xml中增加WEB-INF/web.xml,Eclipse在修改了web.xml后将自动更新到tomcat服务器中。
WEB-INF/web.xml --> <!-- Uncomment this to enable
Comet connec...
分类:
编程语言 时间:
2014-05-21 17:33:49
阅读次数:
256
在MyEclipse目录下搜索com.genuitec.eclipse.wizards得到搜索结果
com.genuitec.eclipse.wizards_9.0.0.me201108091322.jar解压出文件夹,修改com.genuitec.eclipse.wizards_9.0.0.me2...
分类:
编程语言 时间:
2014-05-21 17:31:10
阅读次数:
305
如果要在Linux上做j2ee开发,首先得搭建好j2ee的开发环境,包括了jdk、tomcat、eclipse的安装(这个在之前的一篇随笔中已经有详细讲解了Linux学习之CentOS(七)--CentOS下j2ee环境搭建),如果要开发web项目,我们当然可以安装一个myeclipse到Linux系统上去,这个安装方法和安装eclipse完全相同,就没有记录下来了,有了jdk、tomcat、ec...
分类:
数据库 时间:
2014-05-21 16:44:32
阅读次数:
492
AlienTech for better life!~...
/*
二. 栈的应用-迷宫解题
*/
#include
#include
#include
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define INFEASIBLE -1
#define OVERFLOW -2
//坐标类型
typedef...
分类:
其他好文 时间:
2014-05-21 15:32:04
阅读次数:
353
package com.orgcent.util;
import java.io.File;
import android.os.Environment;
import android.os.StatFs;
public class MemoryStatus {
static final int ERROR = -1;
/**
* 外部存储是否可用
* ...
分类:
移动开发 时间:
2014-05-21 14:34:23
阅读次数:
362