刷新活动以连接到服务器

Posted

技术标签:

【中文标题】刷新活动以连接到服务器【英文标题】:Refresh activity to connect to server 【发布时间】:2017-07-08 02:56:37 【问题描述】:

我有一个项目,其中 android 应用程序正在连接到 tcp 服务器并从中接收数据。服务器循环工作: 1. 等待连接。 2.接受客户。 3. 向客户端发送数据。 4. 关闭连接。 5.回到1。

我的应用程序正在 onCreate() 方法中连接到服务器,它可以工作,它正在接收数据,但我希望它循环工作,以便它可以再次执行连接。

这是一个应用程序代码。 onCreate 方法:

   protected void onCreate(Bundle savedInstanceState)
    
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        temperatureValue = (TextView) findViewById(R.id.temperatureValue);
        humidityValue = (TextView) findViewById(R.id.humidityValue);
        lightValue = (TextView) findViewById(R.id.lightValue);


        new Thread(new ClientThread()).start();
    

客户端线程:

class ClientThread implements Runnable

    String data;

    @Override
    public void run()
    
        try
        
            InetAddress serverAddr = InetAddress.getByName(SERVER_IP);
            socket = new Socket(serverAddr, SERVER_PORT);
        
        catch (UnknownHostException e1)
        
            e1.printStackTrace();
        
        catch (IOException e2)
        
            e2.printStackTrace();
        
        try
        
            InputStream in = socket.getInputStream();
            BufferedReader br = new BufferedReader(new InputStreamReader(in));
            data = br.readLine();

            splitData(data);
        
        catch (Exception e)
        
            e.printStackTrace();
        

    

splitData 方法:

    public void splitData(String data)
    
        String[] parts = data.split(";");
        String temperatura, wilgotnosc, swiatlo;

        temperatura = parts[0];
        wilgotnosc = parts[1];
        swiatlo = parts[2];

        temperatureValue.setText(temperatura.substring(0, 5));
        humidityValue.setText(wilgotnosc.substring(0, 5));
        lightValue.setText(swiatlo);
    

从服务器收到的字符串如下所示: "温度;湿度;光照"

我尝试像人们在这个主题中所说的那样刷新我的活动:here,我的应用程序甚至没有启动,我收到了这个警告: W/art:暂停所有线程耗时:10.644 毫秒。

我的问题是: 有什么方法可以刷新我的应用程序,它会再次连接到服务器并刷新屏幕上的值?如果我关闭应用程序并重新打开它,它就可以工作。感谢您的帮助。

【问题讨论】:

【参考方案1】:

拆分数据(数据);

伪代码:

在你的代码下面,你可以实现一个方法做 refreshConnection

public void refreshConnection() 
  Put your time limit when to refresh and go run the run() method again.

【讨论】:

以上是关于刷新活动以连接到服务器的主要内容,如果未能解决你的问题,请参考以下文章

如何设置连接 URL 以连接到 HSQLDB 中的多个数据库

如何设置 SSH 隧道以连接到位于 AWS EC2 服务器上的 ElasticSearch 和 MongoDB?

蓝牙:如何使用 Bluez 创建一个套接字以连接到具有特定 UUID 的服务?

我可以在 JavaFX 中将自签名证书添加到我的 WebEngine 以连接到 https Web 服务器吗?

Websphere Application Server异常ADMC0016E:系统无法创建SOAP连接器以连接到主机端口

xcode 颠覆设置以连接到基于网络的存储库