Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Java TCP socket chat I would like to convert to a .net C# program. The code is below...please help.

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


class Connection
{
    public Socket s;
    public PrintWriter o;
    public BufferedReader i; 
}

class TCPChatServerThreadTask extends Thread
{
    Connection c;


public TCPChatServerThreadTask (ServerSocket serverSocket) throws IOException
{   
    c = new Connection ();

    c.s = serverSocket.accept ();
    c.o = new PrintWriter (c.s.getOutputStream (), true);
    c.i = new BufferedReader (new InputStreamReader (c.s.getInputStream ()));

    System.out.println (c.s.getInetAddress () + ":" + c.s.getPort () + " Connected");

    this.start ();
}   

public void run ()
{
    String fromClient = ">";

    try
    {               
        do
        {           
            fromClient = c.i.readLine ();

            System.out.println (c.s.getInetAddress () + ":" + c.s.getPort () + "> " + fromClient);

            for (int i = 0; i <  TCPChatServerThread.taskCount - 1; i ++)
            {
                TCPChatServerThread.task[i].c.o.println (c.s.getInetAddress () + ":" + c.s.getPort () + "> " + fromClient); 
            }
        }
        while (fromClient != "quit");

        System.out.println (c.s.getInetAddress () + ":" + c.s.getPort () + " Disconnected");

        c.o.close ();
        c.i.close ();       
        c.s.close ();
    }
    catch (IOException e)
    {
    } 
}
}

public class TCPChatServerThread
{
    ServerSocket serverSocket = null;
    static public String str = "?";
    static public TCPChatServerThreadTask[] task = new TCPChatServerThreadTask[10];
    static public int taskCount = 0;
public TCPChatServerThread () throws IOException
{       
    try
    {
        serverSocket = new ServerSocket (4455);
    }
    catch (IOException e)
    {
        System.err.println ("Server: Could not listen on port: ");
        System.exit (1);
    }

    System.out.println ("Server: Listening on port: ");

    while (true)
    {
        task[taskCount ++] = new TCPChatServerThreadTask (serverSocket);
    }
}

public static void main (String[] args) throws IOException
{       
    TCPChatServerThread e = new TCPChatServerThread ();
}
}
share|improve this question
1  
Looks nice. Where is your problem? – PaĆ­lo Ebermann Apr 6 '11 at 13:38
i must ask what do you expect here some one to port the code for you? – Petoj Apr 6 '11 at 14:04
Welcome to StackOverflow. Please review the faq. I'd also suggest you read this blog post for hints on how to ask better questions. – Will Apr 6 '11 at 14:58

closed as not a real question by Oswald, spender, Will Apr 6 '11 at 14:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

One strategy that could work:

  1. Paste the code in your C# IDE.
  2. correct syntax errors
  3. Look for errors like unknown class/method xyz
  4. Look into the equivalent of the API-Javadoc for c# and look for a c# class/method that is supposed to do the same as the Java-Class, and edit your code accordingly.
  5. Test it.
share|improve this answer
sorry for the delay I was trying out the advice, which did help in the end..thank you – kay Apr 7 '11 at 15:12

Not the answer you're looking for? Browse other questions tagged or ask your own question.