?? imagedatabase.java
字號:
package org.springframework.samples.imagedb;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.List;
import org.springframework.dao.DataAccessException;
/**
* Central business interface for the image database.
*
* @author Juergen Hoeller
* @since 08.01.2004
*/
public interface ImageDatabase {
List getImages() throws DataAccessException;
void streamImage(String name, OutputStream os) throws DataAccessException;
void storeImage(String name, InputStream is, int contentLength, String description)
throws DataAccessException;
void checkImages() throws DataAccessException;
void clearDatabase() throws DataAccessException;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -