作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的应用程序中使用 Proycon 库,PlainTextOutput 是 Proycon 库中的一个类,
在谷歌搜索期间,我发现了下面给出的代码块。这意味着什么,我可以使用此代码打印到控制台吗?
com.strobel.decompiler.Decompiler.decompile(
"D:\\BuildConfig.class",new com.strobel.decompiler.PlainTextOutput(new java.io.OutputStreamWriter(System.out)));
最佳答案
这似乎是实现过程中的一个疏忽;它不会为您刷新Writer
。试试这个:
final PrintWriter writer = new PrintWriter(System.out);
try {
com.strobel.decompiler.Decompiler.decompile(
"D:\\BuildConfig.class",
new com.strobel.decompiler.PlainTextOutput(writer)
);
}
finally {
writer.flush();
}
我会考虑在下一个 Procyon 版本中修复此问题。
关于java - 如何使用 com.strobel.decompiler.PlainTextOutput 在控制台中打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22298263/
我在我的应用程序中使用 Proycon 库,PlainTextOutput 是 Proycon 库中的一个类, 在谷歌搜索期间,我发现了下面给出的代码块。这意味着什么,我可以使用此代码打印到控制台吗?
我是一名优秀的程序员,十分优秀!