我試圖讀取從CSV數據(股票價格)在互聯網上提交CSV文件,而是我收到了這樣的事情:閱讀從網上
(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
這裏是我的代碼:
public static void main(String[] args) {
try {
URL url12 = new URL("http://www.cophieu68.com/export/excel.php?id=BBS");
URLConnection urlConn = url12.openConnection();
InputStreamReader inStream = new InputStreamReader(urlConn.getInputStream());
BufferedReader buff = new BufferedReader(inStream);
String content1 = buff.readLine();
String content2 = buff.readLine();
while (content2 != null) {
System.out.println(content2);
content2 = buff.readLine();
}
} catch (Exception e) {
System.out.print("KHONG TAI DUOC DU LIEU");
}
}
任何想法?
當我從瀏覽器訪問鏈接時,它通常會給我csv文件:( – 2012-02-01 08:52:27
在瀏覽器中啓用HTTP監視或使用'curl'等工具檢查所做HTTP請求的詳細信息。 – 2012-02-01 08:54:01