- 浏览: 152344 次
- 性别:
- 来自: 北京
最新评论
-
wdjhz:
感激不尽。。昨晚找了一晚的资料都没找到详细说明。。看到你的de ...
如何在TableView的列中自定义渲染
文章列表
原因可能是用ant打包,没有设置javac中的参数 debug="true"
输出的日志类似:
java.lang.NullPointerException at com.dyr.cloud.connection.impl.ActionDelegateImpl.getAllGPUGroupAllocationAlgorithm(Unknown Source) at com.dyr.cloud.client.resources.HostManager.getAllGPUGroupAllocationAlgorithm(HostManager. ...
如果Idea以管理员身份启动的话,在配置完vss之后, check project时总是出现
vss project is not valid or password is incorrect
解决方法:以普通用户身份启动Idea
1.工程引用的全局共享lib在是config\options\applicationLibraries.xml文件中
2.在设置-->Path Variables里面可以定义一个全局的路径,然后在路径中引用:
<library name="log4j">
<CLASSES>
<root url="file://$PATH_TO_LIB$/log4j-1.2.15" />
</CLASSES>
好处是以后可以共享工程文件iml,只需要定义变量PATH_TO_LI ...
1 背景
文章内容或者文章标题一般来说都可以含有一些特殊的字符,如:
原始字符
转义字符
"&"
"&"
"<"
"<"
">"
">"
应用场景:
修改树节点的显示字段,但是树节点并没有refresh或者重新渲染的方法来实现树节点的刷新从而来感知这种修改。
实现方式:
可以实现采用手动触发事件的方式。
TreeItem<AbstractTreeNode> currentTreeItem = ****;//当前发生修改的树节点
currentTreeItem.getValue().setNodeText("abc");
//自动触发修改的事件,使树节点的显示信息能同步修改
Event.fireEvent(currentTreeItem, new TreeItem.TreeModificat ...
如何在TableView的列中自定义渲染
- 博客分类:
- JavaFX
//定义TableView中的列
TableColumn<FieldDefine, FieldDefine.Type> fieldTypeCol = new TableColumn<>();
fieldTypeCol.setText(LanguageHelper.getString("common.field_type"));
fieldTypeCol.setPrefWidth(100);
fieldTypeCol.setCellValueFactory(new Callback<Tab ...
原因是和Sogo的输入法的快捷键产生了冲突,Ctrl+Shift+F是输入法的繁简体切换的快捷键。修改输入的快捷键即可。
1.修改artifact,注意关联的jar
2.执行build命令,执行完成之后默认会在dist目录下生成打包后的文件
1.在字段的定义前加上关键字transient
transient FTPServerSych ftpServerSych;
2.调用序列化操作时:
JsonConfig jsonConfig = new JsonConfig();
jsonConfig.setIgnoreTransientFields(true);//设置为不序列化transient的字段
strResult = JSONArray.fromObject(ftpServerList,jsonConfig).toString();
<?xml version="1.0" encoding="GB2312"?>
<project name="WSDL2Java" default="usage" basedir=".">
<property name="wsdl" location="E:\vss_workspace\EMB(1.0)\DYEMB\Doc\wsdls"/>
<property name="options.o ...
axis如何输出接收到和返回的SOAP请求体
- 博客分类:
- axis
1.MessageContext.getCurrentContext().getCurrentMessage().getSOAPPartAsString() 可以打印接收到的SOAP请求。
另外MessageContext 有方法 getResponseMessage和getRequestMessage不知道是否可行,待测试
jdk的bug?
当设置如下参数时:
try {
System.setProperty("java.net.useSystemProxies","true");
} catch (SecurityException e) {
; // failing to set this property isn't fatal
}
在windows中看到进程的句柄数一直在增加。而去掉该参数的设置之后句柄就正常
通过Handle Tracer可以看到有很多句柄引用的ObjectName如下:
HKEY_USERS\S-1-5-21-14090 ...
1.xml中targetSchema的说明:
targetSchema是和elementFormDefault以及attributeFormDefault 结合在一起使用的。
Schema文件定义的目的就是为了效检,那Schema文件到底定义了一些什么东西呢?就是Element和Type,还有Attribute。 就是说,elementFormDefault和attributeFormDefault的值设为qualified之后,Element和Type,还有Attribute的默认命名空间就是targetNameSpace定义的命名空间。
翻译过来就是 元素,类型以及属性,而这些东西是可以定 ...
升级到JDK1.6.0_29,导致访问不了SQLServer2008。获取连接时,一直没返回。
解决方式升级到新的jdk或者是最新SQL Server 2008 R2 的服务包
参考;
1.non compliant with JDK1.6.0_29 version
2.修复: 无法连接到 SQL Server 后升级到 JRE 6 更新 29 或更高版本的 SQL Server 使用 JDBC 驱动程序
1.Struts provide a methods in the Action class to get the locale and the resources
getLocale(request) and getResources(request)
2.从servlet的上下文中获取
MessageResources resources = (MessageResources)getServlet().getServletContext().getAttribute(bundle);
String message = resources.getMessage(locale, ...