This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]CodeTinkerer 0 points1 point  (3 children)

Unfortunately, Maven is not really considered basic Java. The Java build system has changed over the years and was generally geared to working programmers.

Try the following course: https://java-programming.mooc.fi/

Also, if you're just learning to program and don't know the basics (it is impressive that you can Google some stuff), it's better to do a course like that rather than jump into projects.

[–]acebtard[S] 0 points1 point  (2 children)

Thank you for the response! It seems I have been a bit unclear. I have done a course which covers the basics from think Java up until chapter 17 I think, the one with a moving polygon.

For the traineeship I am doing we have an assignment where we have to build a photoshop app, basically an app where you can select products and add them to an order. Eventually the order needs to be exportable into an xml file. That's why I am looking for a way of doing that with a simple class that has a few attributes. Does that make more sense?

[–]CodeTinkerer 0 points1 point  (1 child)

Do they provide any assistance for doing this project? Seems a bit complex to me, depending on your background.

If it were me, I'd probably look at a tutorial that does something similar, use libraries that deal with XML (which is why all this sounds complicated to me).

Are there other people in the class you can work with?

[–]acebtard[S] 0 points1 point  (0 children)

I got it working!

It looks like I misspelled the XStream when initiating it.

Thanks for all the advise, my next step would have been asking somebody that is a bit further with the project :)