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 8791365
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:49:59+00:00 2026-06-13T22:49:59+00:00

I am trying to write a program that listens to port 4444 on the

  • 0

I am trying to write a program that listens to port 4444 on the machine it is running on and logs all incoming data.

This is my code so far.

import java.io.*;
import java.net.*;

public class Foo {
URL url;
URLConnection connection;
InputStreamReader stream;
BufferedReader in;
String inputLine;
int test = 0;

public Foo()
{
    Connect();
}

public static void main(String[] args)
{
    Foo bridge = new Foo();
    System.out.println("made the class");
    for(;;)
    {
        System.out.println("in the loop");
        try 
        {
            System.out.println("making the try");
            if((bridge.inputLine = bridge.in.readLine()) != null)
            {
                System.out.println("reading the line");
                System.out.println(bridge.inputLine);
            }
        }
        /*catch(NullPointerException n)
        {
            System.out.println(bridge.test);
            bridge.test++;
        }*/
        catch(Exception e)
        {
            System.out.println("MAIN" + e);
        }
    }
}

public int Connect()
{       
    try 
    {
        System.out.println("starting the constructor");
        URL url = new URL("http", "192.168.0.104", 4444, "");
        System.out.println("url ready");
        URLConnection connection = url.openConnection();
        System.out.println("connection ready");
        //connection.setReadTimeout(5000);
        connection.setDoInput(true);
        InputStreamReader stream = new InputStreamReader(connection.getInputStream());
        System.out.println("stream ready");
        BufferedReader in = new BufferedReader(stream);
        //BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
        System.out.println("bufferReader ready");

        return 0;
    }
    catch(Exception e)
    {
        System.out.println("CON" + e);
    }
    return 1;
}
}

When I run it I get this as output.

D:\temp_104\foo>java -cp . foo
starting the constructor
url ready
connection ready

Every single time it hangs when it tries to create an input stream.
I have tested it with hyperterminal and the server is outputting messages and can be connected to on port 4444. I am running java 1.5.0_15 and cannot update.

Can anyone see what I am doing wrong ?

  • 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-06-13T22:49:59+00:00Added an answer on June 13, 2026 at 10:49 pm

    I found the problem was scope. The buffered reader was being initialised fine in the function but once back in the main it was null.

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

Sidebar

Related Questions

I am trying to write a program that will append data to an Excel
I'm trying to write a c++ program that uses classes, starts and listens for
I'm trying to write a program that will play MP3's. This program will also
I'm trying to write a program that will write some data to a temporary
I am trying to write a program that uses a C API. This API
I'm trying to write a program that would convert celcius to fahrenheit and visa-versa.
I am trying to write a program that will prompt you to enter someone's
I am trying to write a program that sends basic text files from one
I am trying to write a program that allows a binary to be run,
I am trying to write a program that displays the integers between 1 and

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.