将URL的协议从C:更改为File:

时间:2016-04-09 13:09:10

标签: java mysql url javax.imageio data-linking

您好我正在构建一个应用程序,它使用Java存储在常用Windows目录中找到的文件的URL,文件位于C-Drive中。该程序使用fileChooser获取所获得文件的路径,然后将path()强制转换为字符串并使用java.sql.PreparedStatement.setURL(fileChooser.getPath()。toString());

问题在于:当我尝试使用java.sql.ResultSet.getUrl(String columnName)从数据库表中恢复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());
                }

1 个答案:

答案 0 :(得分:1)

不要将值存储为PreparedStatement.setURL(),即创建数据库内部SQL DATALINK。将其存储为普通字符串:

pstmt.setString(2, url)

如果url是字符串或

pstmt.setString(2, url.toExternalForm())

如果url是一个网址对象。回读时只需读取s之类的变量中的String值,然后从中创建一个新的URL对象:

URL u = new URL(s)