Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
test.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Pusnow committed Aug 10, 2017
1 parent f43f1dc commit 962c456
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ build_script:
after_build:
- 7z a mecab-java-msvc-%ARCH%.zip %APPVEYOR_BUILD_FOLDER%\MeCab.dll
- 7z a mecab-java-msvc-%ARCH%.zip %APPVEYOR_BUILD_FOLDER%\org\
- 7z a mecab-java-msvc-%ARCH%.zip %APPVEYOR_BUILD_FOLDER%\test.java

artifacts:
- path: 'mecab-java-msvc-*.zip'
Expand Down
2 changes: 1 addition & 1 deletion test.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class test {
public static void main(String[] argv) {
System.out.println(MeCab.VERSION);
Tagger tagger = new Tagger();
String str = "太郎は二郎にこの本を渡した。";
String str = "무궁화꽃이피었습니다.";
System.out.println(tagger.parse(str));
Node node = tagger.parseToNode(str);
for (;node != null; node = node.getNext()) {
Expand Down

0 comments on commit 962c456

Please sign in to comment.