gpt4 book ai didi

java - 小程序 - java.awt.awtpermission accessclipboard

转载 作者:行者123 更新时间:2023-12-01 14:19:30 25 4
gpt4 key购买 nike

我创建了小程序来从剪贴板捕获图像。当我在 HTML 中运行小程序时,它会抛出 accesscontrolException 访问被拒绝 (java.awt.awtpermission accessclipboard)

PasteImageApplet.Java

import java.awt.datatransfer.Clipboard;
import java.awt.datatransfer.DataFlavor;
import java.awt.Toolkit;
import java.awt.Color;
import java.awt.image.BufferedImage;
import java.awt.image.ImageObserver;
import javax.swing.JApplet;
import javax.swing.JOptionPane;
import javax.swing.ImageIcon;
import java.io.ByteArrayOutputStream;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
import com.sun.image.codec.jpeg.JPEGCodec;
import java.net.URL;
import java.net.URLConnection;
import java.io.InputStream;
import javax.swing.JLabel;

public class PasteImageApplet extends JApplet{

Clipboard clipboard;
Toolkit toolkit;
JLabel lbl;

public String getClipboardImageURL(String server){
lbl.setText("pasting image");

String url = "";
try{
DataFlavor dataFlavor = DataFlavor.imageFlavor;
System.out.println(dataFlavor.getDefaultRepresentationClass());
Object object = null;

try{
object = clipboard.getContents(null).getTransferData(dataFlavor);
}catch (Exception e){
JOptionPane.showMessageDialog(null, "No image found.");
return "";
}

BufferedImage img = (BufferedImage) object;

BufferedImage bimg = null;
int w = img.getWidth(null);
int h = img.getHeight(null);
bimg = new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB);


ImageIcon ii = new ImageIcon(img);
ImageObserver is = ii.getImageObserver();

bimg.getGraphics().setColor(new Color(255, 255, 255));
bimg.getGraphics().fillRect(0, 0, w, h);
bimg.getGraphics().drawImage(ii.getImage(), 0, 0, is);

ByteArrayOutputStream stream = new ByteArrayOutputStream();
JPEGImageEncoder jpeg = JPEGCodec.createJPEGEncoder(stream);
jpeg.encode(bimg);

URL u = new URL(server);
URLConnection con = u.openConnection();
//String boundary = "-----------------------------7d637a1aa100de";
con.setDoOutput(true);
con.getOutputStream().write(stream.toByteArray());
/*con.getOutputStream().write(((String)
"--"+boundary+"\r\n "+
"Content-Disposition: form-data; name=\"img\"; filename=\"filename\"\r\n"+
"Content-Type: image/jpeg\r\n "+
"Content-Transfer-Encoding: base64\r\n\r\n" +
Base64.encodeBytes(stream.toByteArray())).getBytes());*/
con.connect();
InputStream inputStream = con.getInputStream();
byte [] urlBytes = new byte [inputStream.available()];
inputStream.read(urlBytes);
url = new String(urlBytes);
System.out.print(url);
lbl.setText("image pasted");
} catch (Exception exc){
lbl.setText("an error occurred: " + exc.getMessage());
/*if (ShowExceptions.ShowExceptions)
exc.printStackTrace();*/
}
return url;
}

public void init() {
lbl = new JLabel("");
lbl.setText("applet started");
add(lbl);
toolkit = Toolkit.getDefaultToolkit();
clipboard = toolkit.getSystemClipboard();
}
}

索引.html

<html>
<title>The Hello, World Applet</title>
<hr>
<applet code="PasteImageApplet.class" width="320" height="120">
</hr>
</html>

图片 enter image description here

最佳答案

对 jar 进行签名,并将访问剪贴板的主要代码放入 AccessController 中,如下所示

AccessController.doPrivileged(new PrivilegedAction() {
public Object run() {
// perform the security-sensitive operation here
return null;
}
});

关于java - 小程序 - java.awt.awtpermission accessclipboard,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17741875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com