Đây là đoạn chương trình Socket trong android
Em không thể kết nói trong android
private Socket mSocket;
{
try {
mSocket = IO.socket("https://192.168.1.10:3000"); // nhung khi em doi thanh 10.0.2.2:3000 thì không thể connect được nữa
} catch (URISyntaxException e) {}
}
Con đây là đoạn chương trình node.js để tạo server
`var express = require("express");
var app = express();
var server = require("http").createServer(app);
var io = require("socket.io").listen(server);
var fs = require("fs");
server.listen(process.env.PORT || 3000);
app.get("/", function(req, res){
res.sendFile(__dirname + "/index.html");
});
var arrayUsername = []; // declare array username
io.sockets.on('connection', function(socket) {
console.log("Co nguoi connect ne");
socket.on('client-send-username', function(data) {
if (arrayUsername.indexOf(data) > -1) {
console.log("Da Ton Tai " + data);
} else
arrayUsername.push(data);
console.log("Client sended username = " + data);
});
});`
Ai có kinh nghiệm chỉ cho em với!!