连接由 Pipe 和 ':' 分隔的整数值使用java
我有 ValueA 和 ValueB(int
type) 数组。我正在使用 for
循环从数组中读取每个值。 我想将所有值连接到一个字符串中。这些值应该是这样的形式,
ValueA1":"valueB1"|"ValueA2":"valueB2"|"ValueA3":"valueB3"|"ValueA4":"valueB4"|"....
我想要在Java中使用这个,请一些人帮助我编写代码..
I have array of ValueA and ValueB(int
type) . I am reading each value from array using a for
loop.
I want to concatenate all there values in a single String. these value should be in the form of like these
ValueA1":"valueB1"|"ValueA2":"valueB2"|"ValueA3":"valueB3"|"ValueA4":"valueB4"|"....
I want this in Java, please can some ne help me with code..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试这样的方法
这将评估 valueA 和 valueB 之间最大数组的大小,并在此大小上循环。如果该元素存在,则会打印该元素。
第一个if用于添加分隔符,如果是第一次迭代则不需要“|”
You could try something like this
This will evaluate the size of the biggest array between valueA and valueB, loop on this size. If the element exists it's printed.
The first if is used to add the separator, if it's the first iteration no need for a "|"
假设数组大小不同,此解决方案会将它们压缩在一起,直到较短数组的末尾:
Assuming the arrays are of different size, this solution will zip them together up until the end of the shorter array:
只是一种不同的方法,它使用 Guava
我很惊讶地发现没有原始数组来列出方法。如果您能想到一种优雅的方法来做到这一点,除了将其取出到另一个方法中之外,那么该代码可以变得更干净。
Just a different way of doing it, this uses Guava
I was surprised to find no primitive array to list methods. If you can think of an elegant way to do that besides pulling it out into another method, the this code could be made cleaner.