gpt4 book ai didi

java - 在 Java 中将对象与字符串相互转换的公认做法?

转载 作者:搜寻专家 更新时间:2023-11-01 01:39:12 26 4
gpt4 key购买 nike

假设对象的确切类是已知的,将任意对象与其字符串表示形式相互转换的普遍接受的方法是什么?也就是说,我需要实现一些类似于下面的方法:

public interface Converter {

/**
* Convert this object to its String representation.
*/
public String asString(Object obj);

/**
* Take the String representation of an object produced by asString,
* and convert it back to an object of the appropriate class.
*/
public Object asObject(String stringRepresentation, Class clazz);
}

理想情况下,解决方案应该:

  • 如果可能,使用对象的内置 toString() 功能。因此,converter.asString(new Integer(5)) 应返回“5”,而 converter.asObject(“5”, Integer.class) 应返回值为 5 的 Integer。
  • 尽可能生成人类可读的输出。
  • 处理所有常见的 Java 数据类型,包括 java.util.Date。
  • 允许我为自己的自定义类插入转换功能。
  • 合理轻量且高效。

我知道有很多现成的解决方案可以做到这一点(例如 Google 的 Protocol Buffer ),而且我自己可以轻松实现一次性解决方案。我的问题不是“我如何解决这个问题”,而是“众多现成的解决方案中哪一个是当前的行业标准?”。

最佳答案

My question is not, "how do I solve this problem", but rather, "which one of the many ready-made solutions is the current industry standard ?".

它们都没有成为事实上的标准。

最接近的“默认”XML serialization mechanism顺便说一句,如果你假装手写它们就很糟糕(当你自动使用它们时它就足够了)

下一个最接近标准的东西是日常使用的 JSON 到 Java,但是,你知道,它不是 Java Java

关于java - 在 Java 中将对象与字符串相互转换的公认做法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1678305/

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