System.out.println() 的备用语句
除了 Java 中的 System.out.println() 语句之外,任何人都可以通过提供不同的打印方式来帮助我吗?
Can anybody please help me by providing different ways of printing other than System.out.println() statement in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
替代打印方法:
您还可以使用常规 IO 文件操作,通过使用基于平台的特殊文件在控制台上输出内容:
Alternate printing methods:
You can also use regular IO File operations by using special files based on the platform to output stuff on the console:
这可能对你有帮助。
This may help you.
System.err.println() 用于在控制台上打印。或者创建您自己的打印流对象,然后打印到文件、数据库或控制台。
System.err.println() for printing on console. or create your own printstream object and then print to file, database or console.
以下替代
1.2.3.4.5
您可以尝试
。
方案
:
You can try the following alternatives:
1.
2.
3.
4.
5.
您可以在 Eclipse 中解决这个问题,方法是将鼠标放在单词上,将出现一个弹出窗口,向下滚动并选择
JAVA.LANG.SYSTEM
。它将解决问题并且您的代码将运行。you can solve it in eclipse by placing a mouse on the word a pop-up window will appear scroll down and select
JAVA.LANG.SYSTEM
.It will fix the problem and your code will run.您还可以尝试代码
System.out.printf();
You can also try the code
System.out.printf();