Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1080245
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T21:59:55+00:00 2026-05-16T21:59:55+00:00

I have written a program that reads in a File object (really an XML

  • 0

I have written a program that reads in a File object (really an XML file) to parse the information I want. I have an example program to basically just dump data from the net (program below displaying a webpage). I want to use the code below in accessing the web, to parse that data with my current xml parser with the command line. Like if I did

java xmlParser http://www.engadget.com/rss.xml

Then the program would parse that feed and display just the fields I want in a nice format. First, is that poassible? I’m having trouble just opening up the webpage through the command line instead of what I have below.

Second, how do I take this feed from the net and make my program parse it since it currently just parses a hard-coded XML file. Although not an elegant solution, I could see possibly writing the data from the web into an xml file and parsing that with my XML parser. Any thoughts? Thanks.

Code:

 import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.Scanner;

public class DumpIO {
    public static void main(String[] args) throws IOException {
        URL url = null;
        if (args.length == 0) 
            url = new URL("http://www.engadget.com/rss.xml");
        InputStream is = url.openStream();
        Scanner in = new Scanner(is);
        while (in.hasNextLine()) {
            System.out.println(in.nextLine());
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T21:59:56+00:00Added an answer on May 16, 2026 at 9:59 pm

    Your program works fine if you run it with no command-line args:

    jkugelman$ java DumpIO
    <?xml version="1.0"?>
    <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"
        xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
    >
    <channel>
    ...
    

    The only problem is that you’re only create the URL if args.length == 0. If you pass a URL on the command-line then url ends up being null.

    jkugelman$ java DumpIO http://example.com/
    Exception in thread "main" java.lang.NullPointerException
        at DumpIO.main(DumpIO.java:11)
    

    Fixing that is easy enough:

    if (args.length > 0) {
        url = new URL(args[0]);
    }
    else {
        url = new URL("http://www.engadget.com/rss.xml");
    }
    

    As for your second question, your XML parser will very likely accept InputStreams as input. Take the InputStream you get from url.openStream() and pass it to your XML reader and voilà. No need to save to a temporary file or anything roundabout like that.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I Have a program written in VB6 that reads a long text file and
I have a program written in C++, that opens a binary file(test.bin), reads it
I have written a C++ program that reads in a file and outputs the
I have a program written in Java that reads an excel file and output
I have a program (written in C#) that reads/writes its data directly (direct file
I have written a Java program that reads in a file containing commands to
I have a program written in Java that reads in a file that is
Let say I have written a small program that reads file_A and file_B as
I have a program written in VB.NET which stops a service that uses file
I have an INI file that has been created by an AutoHotKey program written

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.