- 浏览: 694314 次
- 性别:
- 来自: 北京
最新评论
-
jeffersonz:
请问大神,这个插件记录下来的脚本为什么不能再Extendscr ...
PhotoShop - 记录PS的所有操作为JavaScript代码 -
cherishLC:
Andy__Zou 写道cherishLC 写道Andy__Z ...
Eigen的编译选项;MKL的使用 -
Andy__Zou:
cherishLC 写道Andy__Zou 写道cherish ...
Eigen的编译选项;MKL的使用 -
cherishLC:
Andy__Zou 写道cherishLC 写道Andy__Z ...
Eigen的编译选项;MKL的使用 -
Andy__Zou:
cherishLC 写道Andy__Zou 写道 您好,您的工 ...
Eigen的编译选项;MKL的使用
文章列表
问题:
1、使用CellEditor时出现org.eclipse.core.runtime.AssertionFailedException: assertion failed:
原因(使用TextCellEditor时CellModifier的getValue函数返回值必须为String类型的)
引用you have either not set the CellModifier for the TableViewer (using the setCellModifier() ...
具体的可以看官方的http://wiki.eclipse.org/index.php/JFace
1、SWT源代码的获取
可以在官网上下载http://www.eclipse.org/swt/
具体位置在首页的下图所示位置:
2、JFace源代码的获取
需要的包(其中版本号可以忽略),包含在eclipse的plugins目录下了
org.eclipse.core.commands_<version info>.jar
org.eclipse.equinox.common_<version info>.jar
org.eclipse.jface_<version ...
import org.eclipse.swt.graphics.Cursor;
import org.eclipse.swt.graphics.ImageData;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.SWT;
import org.eclipse.wb.swt.SWTResourceManager;
import org.ec ...
这里有详细的事件列表:http://blog.csdn.net/fangfang200805/article/details/4553929
import org.eclipse.swt.events.ShellEvent;
/**
* @author LC
*version: 2012_03_31
*/
public class TestShellEvent {
//shell事件监听器啊!
static class ShellListenerPrint implements ShellListener{
@Override
pu ...
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.graphics ...
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Tray;
import org.eclipse.swt.widgets.TrayItem;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.MenuDetectListener;
import org.eclipse. ...
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.ImageData;
import org.eclipse.swt.graphics.PaletteData;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import ...
import org.eclipse.swt.widgets.Display;
public class TestEventQueue {
public static void main(String[] args) {
final Display display = Display.getDefault();
Shell shell = new Shell();
shell.setSize(450, 300);
shell.setText("测试事件循环");
//直接处理,阻塞UI线程
final Butt ...
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.widgets.Text;
/**
* ...
近来试着FTP搜索,遇到编码问题,研究了下。
Java内部的String为Unicode编码,每个字符占两个字节。
Java编解码方法如下:
String str = "hi好啊me";
byte[] gbkBytes=str.getBytes("GBK");//将String的Unicode编码转为GBK编码,输出到字节中
String string=new String(gbkBytes,"GBK");//gbkBytes中的字节流以GBK方案解码成Unicode形式的Java字符串
1、表单数据的编码
现在的问题是, ...
记录以下网址的javascript core crash章节http://courses.coreservlets.com/Course-Materials/ajax-basics.html
<!-- LCTestJS_Object.html version: 2012_01_11 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html> ...
记录以下网址的javascript core crash章节http://courses.coreservlets.com/Course-Materials/ajax-basics.html
1、
(代码统一放在后面)
2、高级
3、特殊函数
源代码1
<!-- LCTestJS_functions.html version: 2012_01_11 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/ht ...
记录以下网址的javascript core crash章节http://courses.coreservlets.com/Course-Materials/ajax-basics.html
1、String常用
下面说有错的地方其实没错,因为二进制里面不存在2这个字符啊,只有0和1!!!
2、String、Number互相转换
3、正则表达式
正则表达式中的特殊字符(同组内以逗号隔开):
引用
– ^, $, . – beginning, end of string, any one char ,
– \ – escape what would otherwise ...
记录以下网址的javascript core crash章节http://courses.coreservlets.com/Course-Materials/ajax-basics.html
1、载入
/*方法1、从外部载入;适合函数定义*/
<script src="my-script.js" type="text/javascript"></script>
/*方法2、直接在html中写出;直接执行!!!*/
<script type="text/javascript">Jav ...
1、来个java程序,本地方法前加native关键字
public class HelloWorld_20111226 {
public static native void printHelloWorld();
public static native int add(int a, int b);
static {
System.loadLibrary("TestJNI_201112");
}
public static void main(String[] args) { ...