我需要使用下面的代码发布数据到PHP文件,将其保存在文本文件中.
我只是不知道如何创建PHP文件接收下面的数据并将其保存在文本文件中.
尽可能简单.
我只是不知道如何创建PHP文件接收下面的数据并将其保存在文本文件中.
尽可能简单.
任何人都可以帮助,id非常感谢.
try { // Add your data List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2); nameValuePairs.add(new BasicNameValuePair("stringData","12345")); nameValuePairs.add(new BasicNameValuePair("stringData","AndDev is Cool!")); httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs)); // Execute HTTP Post Request HttpResponse response = httpclient.execute(httppost); String responseText = EntityUtils.toString(response.getEntity()); tv.setText(responseText); } catch (ClientProtocolException e) { // TODO Auto-generated catch block } catch (IOException e) { // TODO Auto-generated catch block }
简单如下:
原文链接:https://www.f2er.com/php/131343.htmlfile_put_contents('test.txt',file_get_contents('PHP://input'));