Skip to content

Tag: java

Converting java object to xml

How can i convert java object to xml? I am trying to convert an incoming java object to xml in spring integration with a converter bean. is there another way than marshalling in Jaxb ? like using @TypeConverter. Or implementing converter class. Answer I’m not familiar with @TypeConverter, but looks that…

Java: Generate array from 1 to n with step size

I have trouble with a quite easy task. I want to have an array from 0 to a value n with step size t, always ending with n. Example 1: n=10, t=3, array={0, 3, 6, 9, 10} Example 2: n=20, t=5, array={0, 5, 10, 15, 20} Example 3: n=1, t=1, array={0, 1} I have code which I have been using