随笔分类 -  Java

如何将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 阅读(969) 评论(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 阅读(229) 评论(0) 推荐(0)

导航