前提・実現したいこと
Jsoup使ってJavaオブジェクト指向でスクレイピング(yahooニュース)CSVに出力
一つのCSVに二つのURLのテキストを書き込みたいです。
CSVに出力されるがテキストが上書きされます。
どのようにすればできるかご教授いただけないでしょうか。
発生している問題・エラーメッセージ
データが上書きされる
該当のソースコード
Scrape
1 2public class Scrape { 3 protected String url; 4 Scrape(String url){ 5 this.url = url; 6 } 7 8 public void scrapeData() { 9 10 11 PrintWriter p = null; 12 try { 13 p= new PrintWriter(new BufferedWriter(new OutputStreamWriter(new FileOutputStream("出力パス\yahoo_contents.csv"), "Shift-JIS"))); 14 15 p.print("No"); 16 p.print(","); 17 p.print("Title"); 18 p.print(","); 19 p.print("Date"); 20 p.println(); 21 22 int num = 1; 23 Document doc = Jsoup.connect(this.url).proxy("*******", ****).get(); 24 Elements elm = doc.select(".newsFeed_item"); 25 for(Element elms : elm) { 26 Element title = elms.select(".newsFeed_item_title").first(); 27 Element date = elms.select(".newsFeed_item_date").first(); 28 if (title == null) 29 continue; 30 // 内容をセットする 31 p.print(num); 32 p.print(","); 33 p.print(title.text()); 34 p.print(","); 35 p.print(date.text()); 36 p.println(); 37 num++; 38 } 39 }catch(IOException e) { 40 System.out.println(e); 41 }finally { 42 p.close(); 43 } 44 System.out.println("ファイル出力完了!"); 45 46 long end = System.currentTimeMillis(); 47 48 } 49} 50
Main
1 2public class Main { 3 4 public static void main(String[] args) { 5 // TODO 自動生成されたメソッド・スタブ 6 System.setProperty("jdk.http.auth.tunneling.disabledSchemes", ""); 7 8 Authenticator.setDefault(new Authenticator() { 9 @Override 10 protected PasswordAuthentication getPasswordAuthentication() { 11 return new PasswordAuthentication("*******", "******".toCharArray()); 12 } 13 }); 14 Scrape scrape_domesctic = new Scrape("https://news.yahoo.co.jp/topics/domestic"); 15 Scrape scrape_world = new Scrape("https://news.yahoo.co.jp/topics/world"); 16 Scrape scrape_business = new Scrape("https://news.yahoo.co.jp/topics/business"); 17 18 scrape_domesctic.scrapeData(); 19 20 scrape_world.scrapeData(); 21 22 scrape_business.scrapeData(); 23 } 24 25} 26
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
Eclipse Pleiades2019-12・jdk1.8.0_241・jsoup-1.12.1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/20 08:57 編集