コードで「リクエスト URL」を入力として受け取り、「レスポンス XML」として出力するようにしたいと考えています。これは、pythonを使用して達成したいです。私はPythonが初めてなので、方法がわかりません。私はJavaでこれを行う方法を知っていますが、このためにすでにJavaでコードを開発しています。だから誰かがこれで私を助けることができれば.
Java コード スニペット:
import java.net.*; // import java packages.
import java.io.*;
import java.net.URL;
public class API {
public static void main(String[] args) throws Exception {
URL API = new URL("http:server//"); // Create a URL object 'API' that will locate the resources on remote server via HTTP protocol.
URLConnection request = API.openConnection(); // Retrieve a URLConnection object 'request' that will establish http connection by using openConnection() method.
BufferedReader in = new BufferedReader(new InputStreamReader(
request.getInputStream())); // Create an Output stream ‘in’ that will call InputStreamReader to read the contents of the resources.
String response;
while ((response = in.readLine()) != null) // Write to Output stream until null.
System.out.println(response); // prints the response on Console.
in.close(); // Close Output stream.
}
}