对于以下字符串的格式化,Java 中的等效项是什么?
我正在将 C# 代码移植到 Java,但在转换以下代码时遇到问题,以便写入控制台的字符串格式完全相同。以下 c# 代码的 java 等效项是什么?
byte b = 0xFF;
Console.Write("{0,04:X2}", b);
I am porting c# code to Java and is having troubles with conversion of the following code so that the string format being written to the console is exactly the same. What is the java equivalent for the following c# code?
byte b = 0xFF;
Console.Write("{0,04:X2}", b);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
输出:
Try this:
Output:
您需要对赋值值进行类型转换,即 byte b = (byte)0xFF;看起来可以工作。
要将其打印到控制台,只需使用 System.out.printf("%X", b);
You need to type-cast the assignment value i.e. byte b = (byte)0xFF; looks to work.
to print it into console, simply use System.out.printf("%X", b);