Skip to content

Commit

Permalink
调整微信公众号支持名单
Browse files Browse the repository at this point in the history
  • Loading branch information
r17171709 committed Mar 27, 2018
1 parent 061060f commit f77a2e0
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
Binary file modified lib/kotlin-reflect.jar
Binary file not shown.
Binary file modified lib/kotlin-stdlib-jdk7.jar
Binary file not shown.
Binary file modified lib/kotlin-stdlib-jdk8.jar
Binary file not shown.
Binary file modified lib/kotlin-stdlib.jar
Binary file not shown.
Binary file modified lib/kotlin-test.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions src/com/renyu/rssreader/git/GitCheckMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class GitCheckMain {
public static void main(String[] args) {
int index = 2000;
ExecutorService executors = Executors.newSingleThreadExecutor();
File file=new File("E:\\github");
File file=new File("D:\\github");
File[] listFiles=file.listFiles();
int lastValue = index+400;
if (lastValue>listFiles.length) {
Expand All @@ -25,7 +25,7 @@ public void run() {
System.out.println(path);
Runtime runtime=Runtime.getRuntime();
try {
runtime.exec("cmd /k E: && cd "+path+" && git pull");
runtime.exec("cmd /k D: && cd "+path+" && git pull");
} catch (IOException e) {
e.printStackTrace();
}
Expand Down
2 changes: 1 addition & 1 deletion src/com/renyu/rssreader/js/JSMain.kt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fun main(args: Array<String>) {
var textUrls: MutableList<String> = MutableList(0) {""}
var titles: MutableList<String> = MutableList(0) {""}

val newUrl = "http://www.jianshu.com/c/"+url
val newUrl = "http://www.jianshu.com/c/$url"
val doc: Document = Jsoup.connect(newUrl).get()
val note_list_element: Elements = doc.getElementsByClass("note-list")
val note_list_document: Document = Jsoup.parse(note_list_element.toString())
Expand Down
16 changes: 8 additions & 8 deletions src/com/renyu/rssreader/wx/WXMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,15 @@ public class WXMain {

public static void main(String[] args) {
String[] names={
"架构师必备",
"前端之巅",
"安卓笔记侠",
"Android开发中文站",
"DailyQueation",
"HenCoder",
"沪江技术",
"clock_life",
"刘望舒",
"clock_life",
"终端研发部",
"淘宝技术",
"非著名程序员",
Expand All @@ -44,14 +50,8 @@ public static void main(String[] args) {
"Android编程精选",
"androidtrending",
"郭霖",
"APP架构师",
"安卓开发精选",
"杨守乐",
"移动开发前线",
"安卓笔记侠",
"Android开发中文站",
"DailyQueation",
"HenCoder"
"杨守乐"
};

ExecutorService uploadService= Executors.newFixedThreadPool(1);
Expand Down

0 comments on commit f77a2e0

Please sign in to comment.