简体   繁体   English

有关套接字和Blackberry的帮助

[英]Help with sockets and Blackberry

i'm trying to convert a simple irc client written on java to blackberry, it uses sockets, here it is: 我正在尝试将用Java编写的简单irc客户端转换为黑莓,它使用套接字,这里是:

package seinao;

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

public class Client {

    public static void main(String[] args) throws Exception {

        // The server to connect to and our details.
        String server = "127.0.0.1";
        String nick = "nickname";
        String login = "nickname";

        // The channel which the bot will join.
        String channel = "#oi";

        // Connect directly to the IRC server.
        Socket socket = new Socket(server, 6667);
        BufferedWriter writer = new BufferedWriter(
                new OutputStreamWriter(socket.getOutputStream( )));
        BufferedReader reader = new BufferedReader(
                new InputStreamReader(socket.getInputStream( )));

        // Log on to the server.
        writer.write("NICK " + nick + "\r\n");
        writer.write("USER " + login + " 8 * : Java IRC Hacks Bot\r\n");
        writer.write("Hello World!");
        writer.write("PRIVMSG " + channel + "Hello!\r\n");
        writer.flush( );

        // Read lines from the server until it tells us we have connected.
        String line = null;
        while ((line = reader.readLine( )) != null) {
            if (line.indexOf("004") >= 0) {
                // We are now logged in.
                break;
            }
            else if (line.indexOf("433") >= 0) {
                System.out.println("Nickname is already in use.");
                return;
            }
        }

        // Join the channel.
        writer.write("JOIN " + channel + "\r\n");
        writer.flush( );

        // Keep reading lines from the server.
        while ((line = reader.readLine( )) != null) {
            if (line.toLowerCase( ).startsWith("PING ")) {
                // We must respond to PINGs to avoid being disconnected.
                writer.write("PONG " + line.substring(5) + "\r\n");
                writer.write("PRIVMSG " + channel + " :I got pinged!\r\n");
                writer.flush( );
            }

            else if(line.toLowerCase( ).contains("funciona")){
                writer.write("PRIVMSG " + channel + " Olaz!\r\n");
                writer.flush();
                System.out.println("mermao ta foda");
            }
            else {
                // Print the raw line received by the client.
                System.out.println(line);
            }
        }
    }

}

but i noticed there is no java.net.* on blackberry eclipse plugin soo, what should I do ? 但是我注意到黑莓Eclipse插件上没有java.net。*,该怎么办? can someone help me ? 有人能帮我吗 ? what should I use for sockets ? 我应该使用什么插座? I'm new to java and blackberry programming but i'm learning it quite fast, thanks alot 我是Java和Blackberry编程的新手,但是我学的很快,非常感谢

If I remember correctly, it's SocketConnection that you use. 如果我没记错的话,那是您使用的SocketConnection Search through the Blackberry API for what you'll need, it'll be way more helpful. 在Blackberry API中搜索所需的内容,它将变得更有帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM