2012年2月27日

ant和自定义task中的值互传方法

摘要: Q: 自定义task中java类如何传值给ant?A:设置一个属性,setget方法之后,getProject().setUserProperty("definedProperty", "transform"); 在ant里面直接${definedProperty}调.Q: 如何从ant中读取值到自定义task java中进行处理?A: 在java代码中getProjecst().getProperty("definedProperty")就能拿到ant中定义的值。 阅读全文

posted @ 2012-02-27 11:32 lightideal 阅读(262) 评论(0) 推荐(0) 编辑

如何将Arraylist转成string输出?

摘要: Q: 如何将Arraylist转成string输出?A: List<String> testCases = new ArrayList();testCases.add("this");testCases.add("is");testCases.add("VOA");String[] caseName = testCases.toArray(new String[]{});System.out.println(Arrays.toString(caseName)); 阅读全文

posted @ 2012-02-27 11:27 lightideal 阅读(951) 评论(0) 推荐(0) 编辑

hudson Failed to check out的错误解决

摘要: hudson上编项目报错:Checking outERROR: Failed to check outorg.tmatesoft.svn.core.SVNException: svn: Malformed URL ''at org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:64)at org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:51)at org.tmatesof 阅读全文

posted @ 2012-02-27 11:26 lightideal 阅读(898) 评论(0) 推荐(0) 编辑

Q: How to generate exe install and uninstall file for an eclipse product?

摘要: A: 1) In Eclipse right click the project and select Export/Plug-in Development/Eclipse product and check "Export source", uncheck "Generate metadata repository" then Finish. 2) Install the nsis-2.46-setup.exe 3) change Marts.nsi file's config to the dir which point to the pla 阅读全文

posted @ 2012-02-27 11:19 lightideal 阅读(224) 评论(0) 推荐(0) 编辑

技术博客开张记

摘要: 最近解决ant脚本问题的时候上网搜索了很多资料,想保存下来,用文档保存了不少,但是存储和查找都比较费劲儿。开个技术博客吧,自己积累,见证自己从小菜菜成长的经历,也蛮有意义的。lightideal~~ 阅读全文

posted @ 2012-02-27 11:03 lightideal 阅读(99) 评论(0) 推荐(0) 编辑

导航