如何在android中获取web-service方法的URL?

时间:2012-12-18 08:09:24

标签: android web-services ksoap2

我必须将XML写入我的SD卡,因为我想获得输入流但是要建立这个,当我从android调用任何方法时如何获取URL?

例如我想下载包含10,000条记录的所有登录详细信息,当我从android调用它时调用该方法但是如何获取URL以便我可以建立连接并获取输入流来写入文件...请帮助我以下是我的代码

public void DownloadFiles(){

    try {
        URL url = new URL("http://192.168.0.10/INIFARM/fieldbook/webservice1.asmx?wsdl");
        URLConnection conexion = url.openConnection();
        conexion.connect();
        int lenghtOfFile = conexion.getContentLength();
        InputStream is = url.openStream();
        File testDirectory = new File("/data/data/com.example.androidwebservice/");
        if (!testDirectory.exists()) {
            testDirectory.mkdir();
        }
        FileOutputStream fos = new FileOutputStream(testDirectory + "/response.xml");
        byte data[] = new byte[1024];
        int count = 0;
        long total = 0;
        int progress = 0;
        while ((count = is.read(data)) != -1) {
            total += count;
            int progress_temp = (int) total * 100 / lenghtOfFile;
            if (progress_temp % 10 == 0 && progress != progress_temp) {
                progress = progress_temp;
            }
            fos.write(data, 0, count);
        }
        is.close();
        fos.close();
        Log.v(TAG, "File is Downloaded Successfully");
    } catch (MalformedURLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

1 个答案:

答案 0 :(得分:0)

你的意思是要调用的URL?您的Web服务器管理员需要为此创建一个REST API并告诉您该URL,以便您的应用程序可以通过查询此API来使用该数据。