Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有一种优雅的方式来解析 Java 源代码并隔离其字符串?
我想这样做将所有字符串复制到一个我可以运行德语拼写检查的办公文件中。
您可以使用属性文件
http://www.java-forums.org/blogs/java-basic/974-how-use-properties-file-java.html
您可以通过 jvisualvm 对您的应用程序进行堆转储,它将保存所有存在于内存 String 实例中的内容。结果将存储在 .hprof 文件中,请参阅如何分析 .hprof 文件?
您可以使用正则表达式,例如在这个问题中:shell: extract string from source code
但可能更好的方法是配置 IDE 的拼写检查器。