- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试开发一个 android 应用程序,它可以向其他设备(如带有 wi-fi 模块的指示器)发送命令,如“S”、“A”或“B”。因此,我正在尝试使用 wi-fi 在我的 android 设备和 wi-fi 模块之间建立这种连接。
我在 android 开发者网站上搜索了一些信息。我不知道为什么在服务器边缘,我只需要提供“端口”的信息。而在客户端端,我必须提供“端口”和“地址”的信息。
最佳答案
您好,我可以提供一些代码来简单连接到在 java 中运行的服务器,仅使用控制台和使用套接字连接连接到服务器的基本 android 应用程序。它只是在模拟器(例如来自 Eclipse 的模拟器)上运行的示例代码。真的希望它有所帮助。将通过一些步骤很快提供一个更好的例子。只要手机使用的是 android,当然还有 sdk 版本 14 及更高版本。代码不是很干净,稍后我也会这样做。
Android 端使用 AsyncTask 的 MainActivity.java
public class MainActivity extends Activity {
Socket socket = null;
DataOutputStream output;
DataInputStream input;
ObjectInputStream objectInput;
Button buttonConnect;
Button createTest;
TextView textResponse;
EditText subjectInput, gradeInput, testNameInput;
String curSubject, curGrade, curName;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
buttonConnect = (Button) findViewById(R.id.buttonConnect);
createTest = (Button) findViewById(R.id.createTest);
textResponse = (TextView) findViewById(R.id.textResponse);
buttonConnect.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
new ConnectThread().execute("Connect");
buttonConnect.setText("Connected");
}
});
createTest.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
subjectInput = (EditText) findViewById(R.id.editText1);
gradeInput = (EditText) findViewById(R.id.editText2);
testNameInput = (EditText) findViewById(R.id.editText3);
ConnectThread thread = new ConnectThread(subjectInput.getText()
.toString(), gradeInput.getText().toString(),
testNameInput.getText().toString());
thread.execute("createOpen");
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
public class ConnectThread extends AsyncTask<String, String, String> {
String response = "Nothing yet";
String subject, grade, name;
public ConnectThread() {
}
public ConnectThread(String subject, String grade, String name) {
this.subject = subject;
this.grade = grade;
this.name = name;
}
@Override
protected String doInBackground(String... params) {
if (params[0].equals("Connect")) {
connect();
}
if (params[0].equals("createOpen")) {
createOpen();
}
return null;
}
@Override
protected void onPostExecute(String result) {
textResponse.setText(response);
super.onPostExecute(result);
}
public void createOpen() {
try {
output.writeUTF("createOpen");
output.writeUTF(subject);
output.writeUTF(grade);
output.writeUTF(name);
String command = input.readUTF();
if (command.equals("null")) {
try {
Object object = objectInput.readObject();
ArrayList<String> curTest = (ArrayList<String>) object;
curName = curTest.get(0);
curGrade = curTest.get(1);
curSubject = curTest.get(2);
response = "New Test Created: " + curName;
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
if (command.equals("exists")) {
try {
Object object = objectInput.readObject();
ArrayList<String> curTest = (ArrayList<String>) object;
curName = curTest.get(0);
curGrade = curTest.get(1);
curSubject = curTest.get(2);
response = "Test already exists: " + curName;
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
} catch (IOException e) {
e.printStackTrace();
}
}
public void connect() {
try {
socket = new Socket("10.0.0.16", 500);
output = new DataOutputStream(socket.getOutputStream());
input = new DataInputStream(socket.getInputStream());
objectInput = new ObjectInputStream(socket.getInputStream());
String command = input.readUTF();
response = command;
} catch (UnknownHostException e) {
e.printStackTrace();
Log.d("fail", e.toString());
response = "UnknownHostException: " + e.toString();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
Log.d("fail", e.toString());
response = "IOException: " + e.toString();
}
}
public void disconnect() {
if (socket != null) {
try {
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
Java 的服务器类,它为客户端线程创建套接字
public class Server {
DataOutputStream os;
DataInputStream is;
ArrayList<Test> tests;
public static void main(String[] args) {
new Server();
}
public void postSystemMessage(String message) {
System.out.println(message);
}
public Server() {
try {
tests = new ArrayList<Test>();
// initial data set up
System.out.println("Starting server");
ServerSocket server = new ServerSocket(500, 100);
System.out.println("Server started");
System.out.println("----------------------------------");
while (true) {
System.out.println("Waiting for connection");
Socket socket = server.accept();
ServerThread connection = new ServerThread(socket, this);
System.out.println("New client connected");
System.out.println("----------------------------------");
connection.start();
}
} catch (IOException ex) {
Logger.getLogger(Server.class.getName())
.log(Level.SEVERE, null, ex);
}
}
public synchronized Test checkifexists(String subject, String grade,
String name) {
for (Test test : tests) {
if (test.getTestName().equals(name)) {
if (test.getGrade().equals(grade)) {
if (test.getSubject().equals(subject)) {
return test;
}
}
}
}
return null;
}
public synchronized Test createTest(String subject, String grade,
String name) {
Test test = new Test(subject, grade, name);
tests.add(test);
return test;
}
public synchronized void addToTests(Test in) {
tests.add(in);
}
}
为多客户端连接设置的服务器线程类
public class ServerThread extends Thread {
private Socket socket;
private DataInputStream in;
private DataOutputStream out;
private ObjectOutputStream objectOutput;
private Server server;
public ServerThread(Socket socket, Server server) {
this.server = server;
this.socket = socket;
}
@Override
public void run() {
try {
in = new DataInputStream(socket.getInputStream());
out = new DataOutputStream(socket.getOutputStream());
objectOutput = new ObjectOutputStream(socket.getOutputStream());
out.writeUTF("connection successful");
String command = "";
while (!command.equals("quit")) {
command = in.readUTF();
if (command.equals("createOpen")) {
createOpen();
} else if (command.equals("getFile")) {
} else if (command.equals("saveFile")) {
} else if (command.equals("quit")) {
System.out.println("A client has left");
}
}
} catch (IOException e2) {
System.out.println("Connection dropped");
e2.printStackTrace();
} finally {
try {
if (in != null)
in.close();
if (out != null)
out.close();
socket.close();
} catch (IOException e1) {
e1.printStackTrace();
}
}
}
public void createOpen() {
try {
String subject = in.readUTF();
String grade = in.readUTF();
String name = in.readUTF();
Test curTest = server.checkifexists(subject, grade, name);
if (curTest == null) {
Test test = server.createTest(subject, grade, name);
server.addToTests(test);
ArrayList<String> toSendTest = new ArrayList<String>();
toSendTest.add(subject);
toSendTest.add(grade);
toSendTest.add(name);
out.writeUTF("null");
System.out.println("sending object");
objectOutput.writeObject(toSendTest);
objectOutput.flush();
System.out.println("object sent");
} else {
ArrayList<String> toSendTest = new ArrayList<String>();
toSendTest.add(subject);
toSendTest.add(grade);
toSendTest.add(name);
out.writeUTF("exists");
System.out.println("sending object");
objectOutput.writeObject(toSendTest);
objectOutput.flush();
System.out.println("object sent");
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
关于Android服务器和客户端连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26830591/
我最近在/ drawable中添加了一些.gifs,以便可以将它们与按钮一起使用。这个工作正常(没有错误)。现在,当我重建/运行我的应用程序时,出现以下错误: Error: Gradle: Execu
Android 中有返回内部存储数据路径的方法吗? 我有 2 部 Android 智能手机(Samsung s2 和 s7 edge),我在其中安装了一个应用程序。我想使用位于这条路径中的 sqlit
这个问题在这里已经有了答案: What's the difference between "?android:" and "@android:" in an android layout xml f
我只想知道 android 开发手机、android 普通手机和 android root 手机之间的实际区别。 我们不能从实体店或除 android marketplace 以外的其他地方购买开发手
自Gradle更新以来,我正在努力使这个项目达到标准。这是一个团队项目,它使用的是android-apt插件。我已经进行了必要的语法更改(编译->实现和apt->注释处理器),但是编译器仍在告诉我存在
我是android和kotlin的新手,所以请原谅要解决的一个非常简单的问题! 我已经使用导航体系结构组件创建了一个基本应用程序,使用了底部的导航栏和三个导航选项。每个导航选项都指向一个专用片段,该片
我目前正在使用 Facebook official SDK for Android . 我现在正在使用高级示例应用程序,但我不知道如何让它获取应用程序墙/流/状态而不是登录的用户。 这可能吗?在那种情
我在下载文件时遇到问题, 我可以在模拟器中下载文件,但无法在手机上使用。我已经定义了上网和写入 SD 卡的权限。 我在服务器上有一个 doc 文件,如果用户单击下载。它下载文件。这在模拟器中工作正常但
这个问题在这里已经有了答案: What is the difference between gravity and layout_gravity in Android? (22 个答案) 关闭 9
任何人都可以告诉我什么是 android 缓存和应用程序缓存,因为当我们谈论缓存清理应用程序时,它的作用是,缓存清理概念是清理应用程序缓存还是像内存管理一样主存储、RAM、缓存是不同的并且据我所知,缓
假设应用程序 Foo 和 Eggs 在同一台 Android 设备上。任一应用程序都可以获取设备上所有应用程序的列表。一个应用程序是否有可能知道另一个应用程序是否已经运行以及运行了多长时间? 最佳答案
我有点困惑,我只看到了从 android 到 pc 或者从 android 到 pc 的例子。我需要制作一个从两部手机 (android) 连接的 android 应用程序进行视频聊天。我在想,我知道
用于使用 Android 以编程方式锁定屏幕。我从 Stackoverflow 之前关于此的问题中得到了一些好主意,并且我做得很好,但是当我运行该代码时,没有异常和错误。而且,屏幕没有锁定。请在这段代
文档说: android:layout_alignParentStart If true, makes the start edge of this view match the start edge
我不知道这两个属性和高度之间的区别。 以一个TextView为例,如果我将它的layout_width设置为wrap_content,并将它的width设置为50 dip,会发生什么情况? 最佳答案
这两个属性有什么关系?如果我有 android:noHistory="true",那么有 android:finishOnTaskLaunch="true" 有什么意义吗? 最佳答案 假设您的应用中有
我是新手,正在尝试理解以下 XML 代码: 查看 developer.android.com 上的文档,它说“starStyle”是 R.attr 中的常量, public static final
在下面的代码中,为什么当我设置时单选按钮的外观会发生变化 android:layout_width="fill_parent" 和 android:width="fill_parent" 我说的是
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
假设我有一个函数 fun myFunction(name:String, email:String){},当我调用这个函数时 myFunction('Ali', 'ali@test.com ') 如何
我是一名优秀的程序员,十分优秀!