Add files via upload

This commit is contained in:
DXL
2020-08-27 11:22:49 +08:00
committed by GitHub
parent 7eeb1f6179
commit 51d272e989
13 changed files with 162 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package com.proxgrind.chameleon.callback;
public interface FileReadLineCallback {
//读取完成的结果数组!
void onReadFinish(String[] line);
//读取失败的消息!
void onReadFail(String msg);
}