我正在尝试使用以下方法实现图像,以便在执行send操作时,GIF图像应在指定的时间内显示(由threadRunner pause方法实现)。
问题是它没有显示。在测试中,当我禁用stop()时,它与delIveryReport Textarea同时出现,而不应该出现。我该如何解决。
private void sendActionPerformed(java.awt.event.ActionEvent evt) {
threadRunner t = new threadRunner();
String fone = "";
SendSMS sms = new SendSMS();
String[] arMSISDN = msisdn.split(",");
for (int i = 0; i < arMSISDN.length; i++) {
fone = arMSISDN[i];
fone = fone.trim();
try {
Cursor cursor = new Cursor(Cursor.WAIT_CURSOR);
setCursor(cursor);
t.pause(loading);
sms.sendSMS(user, pass, fone, senderIDString, msgString);
} catch (Exception e) {
e.printStackTrace();
} finally {
Cursor normal = new Cursor(Cursor.DEFAULT_CURSOR);
setCursor(normal);
t.stop(loading);
deliveryReport.append(fone + ": " + sms.response + "\n");
}
}
// JOptionPane.showMessageDialog(rootPane, deliveryReport);
deliveryReport.setVisible(true);
jScrollPane2.setVisible(true);
redo.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
redo.setForeground(new java.awt.Color(223, 90, 46));
redo.setText("Would you like to send another Message?");
yes.setEnabled(true);
no.setEnabled(true);
yes.setText("Yes");
no.setText("No");
back.setEnabled(false);
send.setEnabled(false);
}
穿线器
public void pause(JLabel label){
try {
Thread.sleep(5000);
label.setVisible(true);
} catch (InterruptedException ex) {
Logger.getLogger(threadRunner.class.getName()).log(Level.SEVERE, null, ex);
}
}
public void stop(JLabel l){
l.setVisible(false);
}
在我看来,您的应用程序正在EDT上进行实际工作,而您的线程负责显示和隐藏进度标签。我可能是错的,但是如果是这样,那么我建议您做的事情与您做的完全相反。仅应从EDT(事件调度线程)完成SWING组件的更新,而不能从其他线程进行更新。
如果这是一个SWING桌面应用程序,那么我的建议是让您看一下SwingWorker,这是一个专门设计用于处理长时间运行的任务而又不会阻塞EDT的类。然后,您可以执行以下概述的操作(我的代码可能无法100%编译,但是它应该使您了解我的意思。
private void sendActionPerformed(java.awt.event.ActionEvent evt) {
//implement code to show progress label here
SMSWorker w = new SMSWorker(user, pass, senderIdString, msgString, msisdn.split(","));
w.execute();
}
public SMSWorker extends SwingWorker<Void, DeliveryReport> {
private final String user;
private final String pass;
private final String senderIdString;
private final String msgString;
private final String[] arMSISDN;
// this constructor runs on the current (EDT) thread.
public SMSWorker(String user, String pass, String senderIdString, String msgString, String[] arMSISDN) {
this.user = user;
this.pass = pass;
this.senderIdString = senderIdString;
this.msgString = msgString;
this.arMSISDN = arMSISDN;
}
// this function runs in a separate thread.
public Boolean doInBackground() {
// Instantiate SMS gateway client.
SendSMS sms = new SendSMS();
// Assuming a delivery report can be created like this.
DeliveryReport deliveryReport = new DeliveryReport();
for (int i = 0; i < arMSISDN.length; i++) {
fone = arMSISDN[i];
fone = fone.trim();
try {
sms.sendSMS(user, pass, fone, senderIDString, msgString);
} catch (Exception e) {
// you can notify users about exception using the publish() method.
} finally {
deliveryReport.append(fone + ": " + sms.response + "\n");
}
}
return deliveryReport;
}
// this function runs on the current (EDT) thread.
public void done() {
try {
// synchronize worker thread with EDT.
DeliveryReport deliveryReport = get();
} catch (Exception e) {
//implement code to notify user about errors here.
} finally {
//implement code to hide progress label here.
}
}
关于您的问题:只需将动画gif设置为JLabel的图标-
SWING应该注意显示它。只要您的SMS发送代码在另一个线程上运行,SWING应该很高兴能够渲染GIF动画而不会被SMS发送代码阻止。
问题内容: 我想在应用程序中显示GIF动画图像。我发现,Android本身并不支持动画GIF的困难方式。 但是,它可以使用AnimationDrawable显示动画: 开发>指南>图像和图形> Drawables概述 该示例使用在应用程序资源中另存为帧的动画,但是我需要直接显示动画gif。 我的计划是将动画GIF分解为帧,并将每个帧作为可绘制对象添加到AnimationDrawable中。 有谁知
在你把我和另一个类似的问题联系起来之前,比如这个或那个。我要说的是,我完全按照答案所说的做了,但我的gif不会像它应该做的那样动画化(尽管它是显示出来的)。 下面是我在一个函数中所做的操作,该函数通过主应用程序函数堆栈显示。导航容器和堆栈中的屏幕。导航器。(我使用React导航在屏幕上移动,这里的上下文是按下一个按钮,它显示DetailsScreen函数的内容) 这将显示我的gif的第一个静态图像
它与文件一起工作很好,但是当我使用文件时,它是空的。我在某处读到了将重命名为,但它只显示一帧动画gif而没有动画。有什么想法吗?
问题内容: 我正在尝试制作一个程序来使用Tkinter显示动画GIF。这是我最初使用的代码: test.gif是以下GIF: 这可以正常工作,但是GIF的质量很糟糕。我尝试将其更改为以下内容: 但是,这偶尔会闪烁图像。虽然图片看起来不错,但是作为程序却毫无用处。我究竟做错了什么? 问题答案: 首先,您要为每个帧创建一个新的画布对象。最终,您将有成千上万的图像相互叠加。这是非常低效的;当您开始具有数
问题内容: 您好,我正在使用Swing在Java 1.6上编写GUI应用程序。 我有一个弹出屏幕,该窗口在加载Swing gui时以及稍后会显示gif动画。 我的弹出屏幕是一个JDialog。动画应显示在通过以下方式添加到Jdialog的JLabel上: 现在的事情是,动画仅在gui加载后显示。我相信在GUI加载时(这是我的应用程序中的繁重操作),EDT太忙了,无法运行动画。 现在的问题是,将GU
问题内容: 我尝试在我的网站中实施AJAX。单击div changepass的内容时,则应加载changepass.template.php。这是我为此使用的代码。 我的问题是在页面changepass.template.php完全加载时如何显示GIF动画(loading.gif)。请给我一些代码提示。 问题答案: 有很多方法可以做到这一点。一种简单的方法: JS: 詹姆斯·怀斯曼 ( James