嗨,我正在构建一个应用程序,该应用程序使用Java存储常见windows目录中的文件URL,文件位于C-Drive中。该程序使用fileChooser获取获得的文件的路径,然后将该路径()转换为字符串,并使用java.sql.PreparedStatement.setURL(fileChooser.getPath().toString())存储在sql数据库中;
问题是:当我尝试使用java.sql.ResultSet.getUrl(StringcolumnName)从数据库表中恢复url时。我得到一个未找到的协议异常。我不知道如何将从数据库中获得的字符串操作为一个实际的url,我可以使用它来恢复图像并显示为指定目录中的配置文件图像:
这是我的代码:
public void addURLRow(String description, String url)
throws SQLException {
PreparedStatement pstmt = null;
try {
pstmt = this.sqlConnectionObject.prepareStatement(
"INSERT INTO data_repository"
+ "(document_name,url) VALUES (?,?)");
pstmt.setString(1, description);
pstmt.setURL(2, new URL(url));
pstmt.execute();
} catch (SQLException sqlex) {
JOptionPane.showMessageDialog(null,sqlex);
// JDBCTutorialUtilities.printSQLException(sqlex);
} catch (Exception ex) {
System.out.println("Unexpected exception");
JOptionPane.showMessageDialog(null,"ERROR"+ex.getMessage());
// ex.printStackTrace();
} finally {
if (pstmt != null) {
pstmt.close();
}
}
}
//Obtain picture from the database
public Object obtainImageUrl(String userName) throws MalformedURLException {
try (Connection connect = DriverManager.getConnection("jdbc:mysql://localhost:3306/picturedb", "root", "")) {
Statement mysqlStm = connect.createStatement();
String SELECT_QUERY = "SELECT * FROM picture WHERE userName IN ('" + userName + "');";
ResultSet cursor = mysqlStm.executeQuery(SELECT_QUERY);
while (cursor.next()) {
imageUrl = cursor.getObject("picUrl");
}
URL url = new URL(imageUrl.toString());
// File imageFile = new File(imageUrl);
try {
Image img = ImageIO.read(url);
} catch (IOException ex) {
JOptionPane.showMessageDialog(null, "ERROR" + ex.getMessage());
}
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, "ERROR" + e.getMessage());
}
return imageUrl;
}
//Allows user to set profile
addImagButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent event) {
int ret = fileChooser.showDialog(null, "Add Profile Picture");
if (ret == JFileChooser.APPROVE_OPTION) {
// fileChooser.getSelectedFile().getPath();
try {
// file = new File("C:\Users\user\Pictures\EmmaBeib\12553040_133350150376029_4407158756206009973_n.jpg");
String fileUrl = fileChooser.getSelectedFile().getPath();
JOptionPane.showMessageDialog(null,"URL = "+fileUrl);
addURLRow("userName", fileUrl);
image = ImageIO.read(fileChooser.getSelectedFile());
addImagButton.setIcon(new ImageIcon(image));
addPictureToDB(fileChooser.getSelectedFile());
} catch (FileNotFoundException e) {
System.err.println(e);
} catch (IOException e) {
System.out.println(e);
}catch(SQLException e){
JOptionPane.showMessageDialog(null,"ERROR"+e.getMessage());
}
不要将值存储在PreparedStatement.setURL()
中,即创建DB内部SQL DATALINK。将其存储为正常字符串:
pstmt.setString(2, url)
如果url
是字符串或
pstmt.setString(2, url.toExternalForm())
如果CCD_ 3是URL对象。读回时,只需读取s
等变量中的String值,并从中创建一个新的URL对象:
URL u = new URL(s)