对于以下字符串的格式化,Java 中的等效项是什么?

发布于 2024-11-27 16:00:55 字数 170 浏览 0 评论 0原文

我正在将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

多像笑话 2024-12-04 16:00:55

试试这个:

byte b = (byte) 0xFF;
System.out.printf("%4X", b);

输出:

  FF

Try this:

byte b = (byte) 0xFF;
System.out.printf("%4X", b);

Output:

  FF
黄昏下泛黄的笔记 2024-12-04 16:00:55

您需要对赋值值进行类型转换,即 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);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文