📄 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;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -