remoteif.java

来自「手机控制邮件以及附件的发送」· Java 代码 · 共 28 行

JAVA
28
字号
package remote;import java.rmi.Remote;import java.rmi.RemoteException;public interface RemoteIF extends Remote {	// List the filesystem root 	public String[] getDriveList(String code) throws RemoteException;	// List file of particular location	public boolean listingFile(String user,String location,String code) throws RemoteException;	// get file list	public String[] getFileList(String user,String path,String code) throws RemoteException;	// get directory list	public String[] getDirList(String user,String path,String code) throws RemoteException;	public boolean getFileDetails(String path,String code) throws RemoteException;	public boolean getPreview(String path,String user,String code) throws RemoteException;	public boolean getPreview2(String path,String user,int w,int h,int q,String code) throws RemoteException;	public String getModified(String path,String code) throws RemoteException;	public long getFileSize(String path,String code) throws RemoteException;	public boolean getHidden(String path) throws RemoteException;		public boolean checkUserValid(String n,String p,String code) throws RemoteException;	public boolean sendEmail(String user,String receiver,String t,String c,String[] file_selected,String code) throws RemoteException;}

⌨️ 快捷键说明

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