gpt4 book ai didi

java - 将随机生成的数字转换为字符串

转载 作者:行者123 更新时间:2023-12-02 05:26:13 25 4
gpt4 key购买 nike

我使用 UUID.randomUUID() 生成了一个随机数。

我得到的随机数为

615166860114132342

现在我尝试使用 615166860114132342.toString() 将此数字转换为字符串。但我收到错误。最终我需要的是获取该随机数的字符串格式,因为我需要检查有关该字符串的一些日志。那么,如何获得呢。有什么办法吗?

提前谢谢您。

最佳答案

这对我来说非常适合。

import java.util.UUID;

public class Test {
public static void main(String[] args) {
String uuid = UUID.randomUUID().toString();
System.out.println(uuid);
}
}

输出

766dedf1-a8cd-4572-a01f-c99b5cd45c50

根据 Pushpa 请求

public class Test {
public static void main(String[] args) {
String uuid = UUID.randomUUID().toString();
long value = UUID.randomUUID().getMostSignificantBits();
System.out.println(value);

String val = String.valueOf(value);
System.out.println(val);

System.out.println(uuid);
}
}

输出

4421583623795395631
4421583623795395631
868b5b0f-92d8-44ca-89c1-d93e98187262

关于java - 将随机生成的数字转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25987446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com