⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 encodeing.java

📁 JAVA邮件系统
💻 JAVA
字号:

import java.lang.Integer;

public interface  Encodeing
{
	public int lineCode = 54;
	//sometime , before encode , we need calc the number of 
	//hight ascii code in buffer;
	public  int  CalcEncodeLengthForCharBuffer( byte[] sSrc );
	public  int  CalcEncodeLength( byte[] sSrc , int nLength );
	
	//the buffer should be alloc and free by external module;
	//Now ,it always return TRUE;
	public  int Encode( byte[] sSrc,byte[] sDes,int nSrcLength
						,int nOffsetSrc ,int nOffsetDes );

	//the buffer should be alloc and free by external module;
	//Now ,it always return TRUE;
	public  int Decode( byte[] sSrc,byte[] sDes,int nSrcLength 
						,int nOffsetSrc ,int nOffsetDes );
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -