文件上传到服务器自动
我想我的文件上传到服务器,我试图与文件上传到服务器自动
public class UploadFiles extends Activity {
TextView messageText;
Button uploadButton;
int serverResponseCode = 0;
ProgressDialog dialog = null;
String upLoadServerUri = null;
final String uploadFilePath = "mypath";
final String uploadFileName = "myfile";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_server);
uploadButton = (Button)findViewById(R.id.uploadButton);
messageText = (TextView)findViewById(R.id.messageText);
messageText.setText("Uploading file path :- 'path"+uploadFileName+"'");
upLoadServerUri = "serverpath";
uploadButton.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
dialog = ProgressDialog.show(UploadToServer.this, "", "Uploading file...", true);
new Thread(new Runnable()
{
public void run()
{
runOnUiThread(new Runnable()
{
public void run()
{
messageText.setText("uploading started.....");
}
});
uploadFile(uploadFilePath + "" + uploadFileName);
}
}).start();
}
});
}
public int uploadFile(String sourceFileUri)
{
String fileName = sourceFileUri;
HttpURLConnection conn = null;
DataOutputStream dos = null;
String lineEnd = "\r\n";
String twoHyphens = "--";
String boundary = "*****";
int bytesRead, bytesAvailable, bufferSize;
byte[] buffer;
int maxBufferSize = 1 * 1024 * 1024;
File sourceFile = new File(sourceFileUri);
if (!sourceFile.isFile())
{
dialog.dismiss();
Log.e("uploadFile", "Source File not exist :"
+uploadFilePath + "" + uploadFileName);
runOnUiThread(new Runnable()
{
public void run()
{
messageText.setText("Source File not exist :" +uploadFilePath + "" + uploadFileName);
}
});
return 0;
}
else
{
try
{
// open a URL connection to the Servlet
FileInputStream fileInputStream = new FileInputStream(sourceFile);
URL url = new URL(upLoadServerUri);
// Open a HTTP connection to the URL
conn = (HttpURLConnection) url.openConnection();
conn.setDoInput(true); // Allow Inputs
conn.setDoOutput(true); // Allow Outputs
conn.setUseCaches(false); // Don't use a Cached Copy
conn.setRequestMethod("POST");
conn.setRequestProperty("Connection", "Keep-Alive");
conn.setRequestProperty("ENCTYPE", "multipart/form-data");
conn.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
conn.setRequestProperty("uploaded_file", fileName);
dos = new DataOutputStream(conn.getOutputStream());
dos.writeBytes(twoHyphens + boundary + lineEnd);
dos.writeBytes("Content-Disposition: form-data; name=\"uploaded_file\";filename=\""
+ fileName + "\"" + lineEnd);
dos.writeBytes(lineEnd);
// create a buffer of maximum size
bytesAvailable = fileInputStream.available();
bufferSize = Math.min(bytesAvailable, maxBufferSize);
buffer = new byte[bufferSize];
// read file and write it into form...
bytesRead = fileInputStream.read(buffer, 0, bufferSize);
while (bytesRead > 0)
{
dos.write(buffer, 0, bufferSize);
bytesAvailable = fileInputStream.available();
bufferSize = Math.min(bytesAvailable, maxBufferSize);
bytesRead = fileInputStream.read(buffer, 0, bufferSize);
}
// send multipart form data necesssary after file data...
dos.writeBytes(lineEnd);
dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);
// Responses from the server (code and message)
serverResponseCode = conn.getResponseCode();
String serverResponseMessage = conn.getResponseMessage();
Log.i("uploadFile", "HTTP Response is : "
+ serverResponseMessage + ": " + serverResponseCode);
if(serverResponseCode == 200)
{
runOnUiThread(new Runnable()
{
public void run()
{
String msg = "File Upload Completed.\n\n See uploaded file here : \n\n"+" serverpath"
+uploadFileName;
messageText.setText(msg);
Toast.makeText(UploadToServer.this, "File Upload Complete.",
Toast.LENGTH_SHORT).show();
}
});
}
//close the streams //
fileInputStream.close();
dos.flush();
dos.close();
}
catch (MalformedURLException ex)
{
dialog.dismiss();
ex.printStackTrace();
runOnUiThread(new Runnable()
{
public void run()
{
messageText.setText("MalformedURLException Exception : check script url.");
Toast.makeText(UploadToServer.this, "MalformedURLException", Toast.LENGTH_SHORT).show();
}
});
Log.e("Upload file to server", "error: " + ex.getMessage(), ex);
}
catch (Exception e)
{
dialog.dismiss();
e.printStackTrace();
runOnUiThread(new Runnable()
{
public void run()
{
messageText.setText("Got Exception : see logcat ");
Toast.makeText(UploadToServer.this, "Got Exception : see logcat ",
Toast.LENGTH_SHORT).show();
}
});
Log.e("Upload file to server Exception", "Exception : "
+ e.getMessage(), e);
}
dialog.dismiss();
return serverResponseCode;
}
}
}
,因此我在上传文件成功。现在我想让我的文件在特定的时间间隔上自动上传到服务器上。对于这个我搜索了一下,发现了关于处理程序和定时器,但我仍然无法找到如何实现这一点。我想每上班1小时在服务器上放置我的文件。任何人都可以帮助我如何做到这一点,作为一个新手。提前致谢。
这为我工作:此代码运行在UI
final Handler handler = new Handler();
Timer timer = new Timer();
TimerTask doAsynchronousTask = new TimerTask() {
@Override
public void run() {
handler.post(new Runnable() {
public void run() {
try {
// call ur AsyncTask
} catch (Exception e) {
// TODO Auto-generated catch block
}
}
});
}
};
timer.schedule(doAsynchronousTask, 0, 50000); //execute in every 50000 ms
}
在这里尝试块我需要添加我的方法?以及如何在onclick中调用此处理程序方法? – AndroidOptimist
是的,你需要在尝试块中调用ur方法 – KOTIOS
如何在onclick和try块中调用uploadfile()方法是可能的? – AndroidOptimist
下面有方法来启动计划的任务。 refreshTime以毫秒为单位,因此将1小时转换为millisecons。首先调用这个方法onCreate或者你需要的地方,然后方法将被自动调用(使用处理程序)。
public Timer tvShowsRefreshTimer = new Timer();
private void launchScheduledTask(int refreshTime) {
tvShowsRefreshTimer.schedule(new TimerTask() {
@Override
public void run() {
myScheduledTask(refreshHandler);
}
}, refreshTime);
}
更重要的是,你需要处理程序将自动完成所有的工作:
public Handler refreshHandler= new Handler() {
@Override
public void handleMessage(Message msg) {
launchScheduledTask(3600000); //task after 1 hour
super.handleMessage(msg);
}
};
而且不要忘记邮处理消息你的工作完成之后。此代码(以下)从myScheduledTask方法中调用:
handler.sendEmptyMessage(1);
这就是您所需要的。把你的代码放到myScheduledTask方法,做你的工作:)
当我正在执行此oncreate它会抛出错误,如无效修饰符 – AndroidOptimist
尝试将以上所有代码移到onCreate外部。在onCreate你只能调用launchScheduledTask(60000);//第一次启动将在一分钟后。 – Ragaisis
u可以使用计时器和运行上传的的AsyncTask – KOTIOS
ü可以上传我一些例子值编码,这样我可以了解更多更好的 – AndroidOptimist
你有什么要求?因为有很多方法来处理这种情况。你希望你的应用在每小时上传一次的同时在后台运行吗? – saiful103a