-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
1,017 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.monke.monkeybook.help; | ||
|
||
/** | ||
* Created by newbiechen on 17-5-27. | ||
*/ | ||
|
||
public final class Void { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package com.monke.monkeybook.utils; | ||
|
||
/** | ||
* 编码类型 | ||
*/ | ||
public enum Charset { | ||
UTF8("UTF-8"), | ||
UTF16LE("UTF-16LE"), | ||
UTF16BE("UTF-16BE"), | ||
GBK("GBK"); | ||
|
||
private String mName; | ||
public static final byte BLANK = 0x0a; | ||
|
||
private Charset(String name) { | ||
mName = name; | ||
} | ||
|
||
public String getName() { | ||
return mName; | ||
} | ||
} |
Oops, something went wrong.