-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.java
108 lines (65 loc) · 3.09 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package youtube;
import java.awt.Desktop;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
static ArrayList<String> channelUrlList = new ArrayList<String>();
public static void main(String[] args) throws UnsupportedEncodingException {
System.out.println("あなたの好きなYouTubeチャンネルのURLを下に入力してください!(複数可)");
System.out.println("入力を終えたら 【 Enter を2回 】押して、数秒お待ち下さい!!");
System.out.println();
System.out.println("入力例↓");
System.out.println("https://www.youtube.com/user/HikakinTV");
System.out.println("https://www.youtube.com/c/junchannel");
System.out.println("https://www.youtube.com/c/koyakky-ch");
System.out.println("https://www.youtube.com/channel/UCFOsYGDAw16cr57cCqdJdVQ");
System.out.println("(Enter を2回 押す)");
System.out.println();
System.out.println();
System.out.println("↓↓↓ここに入力!!↓↓↓");
Scanner scan = new Scanner(System.in);
while(scan.hasNextLine()) {
String str = scan.nextLine();
if(str.equals("")) // 空行なら終了
break;
channelUrlList.add(str);
}
System.out.println("実行中");
for(String channelUrl : channelUrlList) {
// System.out.println();
// System.out.println();//改行
//コンソールで入力されたチャンネルURLからチャンネルIDを受け取る
String channelId =GetYouTubeChannelId.getChannelId(channelUrl);
String channelName = GetYouTubeChannelName.getChannelName(channelUrl) ; //String twitterID = GetTwitterID.getTwitterLink(channelUrl);
String encodedChannelName = URLEncoder.encode(channelName, "Shift_JIS");
ArrayList<String> newsTitles = GetGoogleNewsTitles.getNewsTitles(encodedChannelName);
//チャンネルIDを使ってfeedを読み込んで動画タイトル(title)を読み込む
ArrayList<String> feedTitle = FeedYouTubeChannel.getTitle(channelId);
//動画タイトルをsudachiで形態素解析
ArrayList<String> words = Sudachi.getWordFreq(feedTitle,newsTitles);///////////////////
//System.out.println(words);
ArrayList<String> freqWordList = FreqWordsCount.counter(words);
//解析した結果をyou tubeでチャンネル検索
ArrayList<String> urls = SearchRecommendedYouTubeChannel.urls(freqWordList);
//ブラウザ自動起動か、またHTML読み取って txtファイルとかコンソールとかに表示
Desktop desktop = Desktop.getDesktop();
for(int i=0; i<urls.size() ;i++){
try {
URI uri = new URI(urls.get(i));
desktop.browse(uri);
} catch (URISyntaxException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
scan.close();
System.out.println("本プログラムは正常に起動しました");
}
}