Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: parallel manipulation of XML files

  1. #1
    Junior Member
    Join Date
    Sep 2014
    Posts
    7
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Thumbs up parallel manipulation of XML files

    Hi!

    New to this forum and a fairly new at Java. I'm currently starting my thesis where my Project will involve creating a diff and merge tool for simulink slx files.
    These are built using several xml files, a png and sometimes some other data files. One can get to these files by changing the file extension to zip.

    I am a bit troubled by this since I want to be able to handle all these files simultaneously and hence need to do this automatically when choosing the slx file.

    I would appreciate some strategic advice on how to handle this issue or any documentation that might help me regarding this.

    Thanks
    Mike


  2. #2
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: parallel manipulation of XML files

    I want to be able to handle all these files simultaneously and hence need to do this automatically when choosing the slx file
    It's not clear what this means and why it troubles you. What has to be done simultaneously and automatically? Once the .six file is unpacked, the multiple files it contains can be opened at the same time as needed, but what happens next?

  3. #3
    Junior Member
    Join Date
    Sep 2014
    Posts
    7
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: parallel manipulation of XML files

    Thanks for the reply I hope this makes things a tad bit clearer

    What I want to do is to parse the consisting xml files so I would like to find each file and make them into objects (I guess) and from here on use either Xpath or similiar packages/functionalities to manipulate the xml files.
    So practically what I need is to do is:
    -change the file extension to zip
    -find the files within the small library inside the zip file
    -create objects or temporary files of each these to be able to manipulate them

Similar Threads

  1. read xml files and write to the txt file
    By RMAL in forum File I/O & Other I/O Streams
    Replies: 3
    Last Post: July 24th, 2018, 01:52 PM
  2. Merging different nodes of XML files using Java
    By vasouli in forum What's Wrong With My Code?
    Replies: 0
    Last Post: November 3rd, 2013, 12:40 PM
  3. JDBC with XML files.
    By alkic1 in forum JDBC & Databases
    Replies: 2
    Last Post: August 29th, 2012, 05:18 PM
  4. Convert Text files to XML
    By HelloAll in forum Java Theory & Questions
    Replies: 1
    Last Post: February 2nd, 2011, 05:01 AM
  5. FileNotFound error while working with XML files in windows
    By ochieng in forum File I/O & Other I/O Streams
    Replies: 1
    Last Post: November 14th, 2008, 07:56 AM

Tags for this Thread