?? mlinereader.java
字號:
package net.jumperz.io;
import java.io.*;
public interface MLineReader
{
public static final int CR = 0;
public static final int LF = 1;
public static final int CRLF = 2;
public static final int NULL = 3;
public static final int UNKNOWN = 4;
// --------------------------------------------------------------------------------
public String readLine() throws IOException;
public void setInputStream( InputStream in ) throws IOException;
public int getLastDelimiter();
public int getLastDelimiterSize();
public String getLastDelimiterString();
// --------------------------------------------------------------------------------
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -