質問編集履歴
2
ソース部分の修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -31,7 +31,7 @@
|
|
31
31
|
|
32
32
|
os.close();
|
33
33
|
|
34
|
-
if (http.getResponseCode() == HttpURLConnection.HTTP_OK
|
34
|
+
if (http.getResponseCode() == HttpURLConnection.HTTP_OK) {
|
35
35
|
try (InputStreamReader isr = new InputStreamReader(http.getInputStream(),
|
36
36
|
StandardCharsets.UTF_8);
|
37
37
|
BufferedReader reader = new BufferedReader(isr)) {
|
1
タイトルの修正
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
AtomPubAPIをJavaから利用する方法
|
1
|
+
AtomPubAPIのPOST通信をJavaから利用する方法
|
body
CHANGED
File without changes
|