MySQL表如何导入图片_怎么将图片添加到mysql中

本文介绍了如何将图片存储到MySQL数据库中,主要步骤包括:将数据库表的图片字段设置为BLOB类型,将图片转换为二进制流,然后通过Java代码将二进制流插入到数据库。提供了创建表、数据库连接、图片读取与写入的Java示例代码。
摘要由CSDN通过智能技术生成

将图片添加到mysql中的方法:首先将数据库存储图片的字段类型设置为blob二进制大对象类型;然后将图片流转化为二进制;最后将图片插入数据库即可。

2020102809363053719.jpg

推荐:《mysql视频教程》

正常的图片储存要么放进本地磁盘,要么就存进数据库。存入本地很简单,现在我在这里记下如何将图片存进mysql数据库

如果要图片存进数据库 要将图片转化成二进制。

1.数据库存储图片的字段类型要为blob二进制大对象类型

2.将图片流转化为二进制

下面放上代码实例

一、数据库CREATE TABLE `photo` (

`id` int(11) NOT NULL,

`name` varchar(255) DEFAULT NULL,

`photo` blob,

PRIMARY KEY (`id`)

) ENGINE=InnoDB DEFAULT CHARSET=utf8;

二、数据库链接/**

*

*/

package JdbcImgTest;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.SQLException;

/**

* @author Administrator

*

*/

public class DBUtil

{

// 定义数据库连接参数

public static final String DRIVER_CLASS_NAME = "com.mysql.jdbc.Driver";

public static final String URL = "jdbc:mysql://localhost:3306/test";

public static final String USERNAME = "root";

public static final String PASSWORD = "root";

// 注册数据库驱动

static

{

try

{

Class.forName(DRIVER_CLASS_NAME);

}

catch (ClassNotFoundException e)

{

System.out.println("注册失败!");

e.printStackTrace();

}

}

// 获取连接

public static Connection getConn() throws SQLException

{

return DriverManager.getConnection(URL, USERNAME, PASSWORD);

}

// 关闭连接

public static void closeConn(Connection conn)

{

if (null != conn)

{

try

{

conn.close();

}

catch (SQLException e)

{

System.out.println("关闭连接失败!");

e.printStackTrace();

}

}

}

//测试

/* public static void main(String[] args) throws SQLException

{

System.out.println(DBUtil.getConn());

}

*/

}

三、图片流package JdbcImgTest;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.InputStream;

/**

* @author Administrator

*

*/

public class ImageUtil

{

// 读取本地图片获取输入流

public static FileInputStream readImage(String path) throws IOException

{

return new FileInputStream(new File(path));

}

// 读取表中图片获取输出流

public static void readBin2Image(InputStream in, String targetPath)

{

File file = new File(targetPath);

String path = targetPath.substring(0, targetPath.lastIndexOf("/"));

if (!file.exists())

{

new File(path).mkdir();

}

FileOutputStream fos = null;

try

{

fos = new FileOutputStream(file);

int len = 0;

byte[] buf = new byte[1024];

while ((len = in.read(buf)) != -1)

{

fos.write(buf, 0, len);

}

fos.flush();

}

catch (Exception e)

{

e.printStackTrace();

}

finally

{

if (null != fos)

{

try

{

fos.close();

}

catch (IOException e)

{

e.printStackTrace();

}

}

}

}

}

四、转码存储package JdbcImgTest;

import java.io.FileInputStream;

import java.io.InputStream;

import java.sql.Connection;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

/**

* @author Administrator 测试写入数据库以及从数据库中读取

*/

public class ImageDemo

{

// 将图片插入数据库

public static void readImage2DB()

{

String path = "D:/Eclipse/eclipseWorkspace/TestProject/Img/mogen.jpg";

Connection conn = null;

PreparedStatement ps = null;

FileInputStream in = null;

try

{

in = ImageUtil.readImage(path);

conn = DBUtil.getConn();

String sql = "insert into photo (id,name,photo)values(?,?,?)";

ps = conn.prepareStatement(sql);

ps.setInt(1, 1);

ps.setString(2, "Tom");

ps.setBinaryStream(3, in, in.available());

int count = ps.executeUpdate();

if (count > 0)

{

System.out.println("插入成功!");

}

else

{

System.out.println("插入失败!");

}

}

catch (Exception e)

{

e.printStackTrace();

}

finally

{

DBUtil.closeConn(conn);

if (null != ps)

{

try

{

ps.close();

}

catch (SQLException e)

{

e.printStackTrace();

}

}

}

}

// 读取数据库中图片

public static void readDB2Image()

{

String targetPath = "C:/Users/Jia/Desktop/mogen.jpg";

Connection conn = null;

PreparedStatement ps = null;

ResultSet rs = null;

try

{

conn = DBUtil.getConn();

String sql = "select * from photo where id =?";

ps = conn.prepareStatement(sql);

ps.setInt(1, 1);

rs = ps.executeQuery();

while (rs.next())

{

InputStream in = rs.getBinaryStream("photo");

ImageUtil.readBin2Image(in, targetPath);

}

}

catch (Exception e)

{

e.printStackTrace();

}

finally

{

DBUtil.closeConn(conn);

if (rs != null)

{

try

{

rs.close();

}

catch (SQLException e)

{

e.printStackTrace();

}

}

if (ps != null)

{

try

{

ps.close();

}

catch (SQLException e)

{

e.printStackTrace();

}

}

}

}

//测试

public static void main(String[] args)

{

//readImage2DB();

readDB2Image();

}

}

在Android Studio,你可以通过以下步骤打开相机并选择图片,然后将其上传到MySQL数据库: 1. **添加权限**: 首先,在`AndroidManifest.xml`文件添加Camera和存储权限: ```xml <uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera" android:required="false" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> ``` 2. **初始化相机功能**: 使用`FragmentActivity`或` AppCompatActivity`创建相机活动,并导入`CameraX`库(如果你还没有添加的话): ```java import androidx.camera.core.CameraX; import androidx.camera.view.PreviewView; import androidx.lifecycle.LifecycleOwner; import androidx摄影.core.ImageCapture; ``` 3. **设置相机预览**: 在布局XML添加`<androidx.camera.widget.Preview>`组件展示实时画面: ```xml <androidx.camera.widget.Preview android:id="@+id/camera_preview" android:layout_width="match_parent" android:layout_height="match_parent" /> ``` 4. **开启相机和拍照**: 在相应的Activity或Fragment,请求相机并捕获照片: ```java private void openCamera() { ImageCapture imageCapture = new ImageCapture(); CameraX.bindToLifecycle((LifecycleOwner) this, imageCapture); imageCapture.takePicture( new ImageCapture.OnImageCapturedCallback() { @Override public void onCaptureSuccess(@NonNull ImageProxy imageProxy, @.NonNull CancellationSignal cancellationSignal) { // 这里获取到图片后,可以转换成Bitmap或者其他格式 Bitmap bitmap = imageProxy.getPlanes()[0].getBuffer().asRgb888Array(); // 将Bitmap上传至MySQL数据库 uploadToMySQL(bitmap); } }, cancellationSignal ); } private void uploadToMySQL(Bitmap bitmap) { // 实现将图片数据通过HTTP POST上传到MySQL,这里只是一个伪代码示例: HttpURLConnection connection = null; try { URL url = new URL("http://your-api-url.com/upload"); connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("POST"); connection.setDoOutput(true); OutputStream outputStream = connection.getOutputStream(); ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressFormat.JPEG, 100, byteArrayOutputStream); byte[] imageData = byteArrayOutputStream.toByteArray(); outputStream.write(imageData); outputStream.flush(); int responseCode = connection.getResponseCode(); if (responseCode == HttpURLConnection.HTTP_OK) { // 成功响应,处理数据库操作 } else { // 错误处理 } } catch (Exception e) { e.printStackTrace(); } finally { if (connection != null) { connection.disconnect(); } } } ``` 5. **注意生命周期管理**: 确保在需要关闭相机时调用`CameraX.unbindFromLifecycle()`。 6. **错误处理和用户交互**: 考虑异常处理和用户界面反馈,比如相机权限未授权、网络连接失败等情况。 记得根据实际环境调整URL以及数据库连接细节。运行应用前,确保你的服务器端已配置好接收来自Android设备的图像上传请求。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值