アプリを開発しています。そのアプリは、単純な .php URL のコンテンツを取得し、それを文字列として保存する必要があります。問題は、それが非常に長い文字列 (VERY LONG) であり、半分しかないことです。このリンクを例として取り上げます:
http://thuum.org/download-dev-notes-web.php
このコードで
URL notes = new URL("http://thuum.org/download-dev-notes-web.php")
BufferedReader in = new BufferedReader(new InputStreamReader(notes.openStream()));
String t = "";
while ((inputLine = in.readLine()) != null)
t = inputLine;
fOut = openFileOutput("notes", MODE_PRIVATE);
fOut.write(t.getBytes());
// Added This \/ to see it's length when divided, and it is not nearly as much as it should be
System.out.println(t.split("\\@").length);
それを文字列にダウンロードして、切り取らずに内部ストレージに保存する方法を教えてもらえますか? 最後の x 桁しか取得できないように見える理由の一部...