gpt4 book ai didi

java - 将java对象转换为管道分隔字符串

转载 作者:行者123 更新时间:2023-12-01 21:56:47 26 4
gpt4 key购买 nike

假设有类:

public class Employee 
{
private String name;
private String age;
private String birthdate;
private String location;
}

我们有一个对象,其值为 name = John、age = 25、birthdate = September 10、location = houston。是否有一种简单的方法或有效的方法将该对象转换为管道分隔字符串,如下所示?

John|25|September 10|houston

我只能想到一种解决方案 - 只需将对象成员的值附加到字符串中。我想知道是否有更好的方法来做到这一点。

最佳答案

使用字符串格式

System.out.println (String.format ("%s|%s|%s|%S", name, age, birthdate, location));

将其放入您重写的 toString 方法中

关于java - 将java对象转换为管道分隔字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34170694/

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