- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个应用程序。我想上传图像并保存到我的数据库..当运行我的应用程序时,它成功运行小尺寸图像,但我无法将大尺寸图像保存到我的数据库..当我要保存大尺寸图像(如 2 MB)时,它会提示类似的错误
com.mysql.jdbc.PacketTooBigException:查询数据包太大 (2491559 > 1048576)。您可以通过设置 max_allowed_packet' 变量在服务器上更改此值。
为什么会出现这个错误..我该如何解决它这是我的代码
私有(private) void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
if (evt.getSource() == jButton1)
{
int x = 0;
String s1 = jTextField1.getText().trim();
String s2 = jTextField2.getText();
char[] s3 = jPasswordField1.getPassword();
char[] s4 = jPasswordField2.getPassword();
String s8 = new String(s3);
String s9 = new String(s4);
String s5 = jTextField5.getText();
String s6 = jTextField6.getText();
String s7 = jTextField7.getText();
if(s8.equals(s9))
{
try
{
File image1 = new File(filename);
FileInputStream fis = new FileInputStream(image1);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
byte buf[] = new byte[1024];
for (int readNum; (readNum = fis.read(buf)) != -1;) {
bos.write(buf, 0, readNum);
}
cat_image = bos.toByteArray();
System.out.println(cat_image.length);
PreparedStatement ps = conn.prepareStatement("insert into reg values(?,?,?,?,?,?,?)");
ps.setString(1, s1);
ps.setString(2, s2);
ps.setString(3, s8);
ps.setString(4, s5);
ps.setString(5, s6);
ps.setString(6, s7);
ps.setBytes(7, cat_image);
int rs = ps.executeUpdate();
x++;
if (x > 0)
{
JOptionPane.showMessageDialog(jButton1, "Data Saved Successfully");
}
}
catch(Exception e)
{
System.out.println(e);
}
}
else
{
JOptionPane.showMessageDialog(jButton1, "Password Dosn't match");
}
}
else
{
jTextField1.setText("");
jTextField2.setText("");
jPasswordField1.setText("");
jPasswordField2.setText("");
jTextField5.setText("");
jTextField6.setText("");
jTextField7.setText("");
}
// TODO add your handling code here:
}
私有(private) void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
jTextField1.setText("");
jTextField2.setText("");
jPasswordField1.setText("");
jPasswordField2.setText("");
jTextField5.setText("");
jTextField6.setText("");
jTextField7.setText("");
// TODO add your handling code here:
}
私有(private)无效jButton3ActionPerformed(java.awt.event.ActionEvent evt){
JFileChooser chooser = new JFileChooser();
chooser.showOpenDialog(null);
File f = chooser.getSelectedFile();
filename = f.getAbsolutePath();
jTextField3.setText(filename);
// int returnVal = chooser.showOpenDialog(null);
//if(returnVal == JFileChooser.APPROVE_OPTION) {
ImageIcon icon=new ImageIcon(filename);
jLabel8.setIcon(icon);
//}
// TODO add your handling code here:
}
最佳答案
由于异常表明问题与服务器的 max_allowed_packet 有关。定义一个数据包的最大大小的变量。请参阅Packet Too Large描述如何修改服务器的配置文件以增加此变量的值的主题。另请参阅Using Option Files有关配置文件的更多详细信息。
关于java - 将大图像上传到我在 java netbeans 中的应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22363833/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!