英文:
How to get the output of javap to multiple text files
问题
我知道这是一个简单的问题,但我对编程还很陌生,我想知道是否有一种方法可以将javap文件的输出结果保存到多个不同命名的文本文件中。例如,在只有一个输出文件的情况下,可以使用以下命令:javap -c abc.class > 你想要的文件名.txt。那么如果我想要输出到多个不同唯一命名的文本文件中,该怎么办呢?
英文:
I know this is a simple question but I am quite new to programming and I want to know if there is a way to get the output of a javap file to multiple different named text files. Eg. In the case of one output file it would be javap -c abc.class > nameOfTheFileYouWant.txt what about in the event that where I want it to output more than one uniquely named text file.
答案1
得分: 1
如果您使用的是 bash,那么您可以使用如下所示的 tee
命令:
javap -c abc.class | tee file1.txt file2.txt file3.txt
在这个特定的示例中,相同的输出会被写入到三个文件 file1.txt
、file2.txt
和 file3.txt
。
英文:
If you are using bash, then you can use tee
command as shown below
javap -c abc.class | tee file1.txt file2.txt file3.txt
In this specific example same output will be written to three files file1.txt
, file2.txt
and file3.txt
答案2
得分: 0
"javap"工具用于获取任何类或接口的信息。"javap"命令会对一个或多个类文件进行反汇编。其输出取决于所使用的选项。如果未使用任何选项,"javap"会打印出传递给它的类的包、受保护和公共字段以及方法。"javap"将其输出打印到标准输出。
英文:
The javap tool is used to get the information of any class or interface.The javap command disassembles one or more class files. Its output depends on the options used. If no options are used, javap prints out the package, protected, and public fields and methods of the classes passed to it. javap prints its output to stdout.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论