Arrays.toString(int[]) 的反转(解析输出)
JDK 或 Jakarta Commons(或其他任何地方)中是否有可以解析 Arrays.toString 输出的方法,至少对于整数数组?
int[] i = fromString(Arrays.toString(new int[] { 1, 2, 3} );
Is there in the JDK or Jakarta Commons (or anywhere else) a method that can parse the output of Arrays.toString, at least for integer arrays?
int[] i = fromString(Arrays.toString(new int[] { 1, 2, 3} );
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
很简单,自己做即可:
Pretty easy to just do it yourself:
使用 fastjson(一个 JSON 库)的示例:
另一个使用 guava 的示例:
A sample with fastjson, a JSON library:
Another sample with guava:
您还可以使用 Apache Commons 的 中的 split/join字符串实用程序
You can also use split/join from Apache Commons' StringUtils