抱歉拖了太久才回答,前几天我没有太多工作的机会。
假设您还没有找到答案,并且您的 android 设备配置为侦听特定端口,您可以使用以下方法。
您的(非常基本的)html:
<!doctype html>
<html>
<head>
<title>Chat</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="jquery.js" ></script>
<script type="text/javascript" src="contact.js" ></script>
</head>
<body>
<form>
<input type="text" id="my_text">
</form>
<button id="send">Send!</button>
</body>
</html>
您的 contact.js 文件:
$(function(){
$('#send').click(function(){
var your_text = $('#my_text').html();
send_to_droid(your_text);
});
})
function send_to_droid(your_text){
$.ajax({
url: "send_to_droid.php",
type: "GET",
data: {
"your_text": your_text
}
})
}
最后,你 send_to_droid.php 文件:
<?php
$handle = fsockopen(<android device's ip>,<android device's port>);
fwrite( $handle , $_GET['your_text'] );
?>
我没有花太多时间来测试它,当然你可以更好地实现它来管理失败的连接等,但我希望这能让你开始。