为什么这段代码在Vista中有效但不在7中?

时间:2011-06-06 16:18:34

标签: java windows-7 windows-vista toolkit screen-resolution

出于某种原因,每次我有人在Vista中运行这个程序它都可以完美地工作但是只要我将它移到Windows 7 PC上它就停在ActionListener的Action Performed Method中间意味着我可以点击我的选择但是它永远不会说大小选择。 有什么方法可以解决这个问题吗?

import java.io.*;
import java.util.*;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class SizerFrame extends JFrame {
    ButtonGroup buttons = new ButtonGroup();
    JTextField width = new JTextField(2);
    JTextField height = new JTextField(2);
    double inchesPerTimeline = 2.1;
    public SizerFrame()
    {
        super("Timeline Application");
        Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
        setBounds(screen.width/2-125,screen.height/2-90,250,180);
        getContentPane().setLayout(new GridBagLayout());
        GridBagConstraints c = new GridBagConstraints();
        int[] gridX = new int[]{0,0,0,0};
        int[] gridY = new int[]{0,1,2,3};
        int[] gridW = new int[]{1,1,2,5};
        String[] titles = new String[]{"6\"","9\"","10\"","Custom"};
        String[] actions = new String[]{"6","9","10","C"};
        for (int a = 0; a < 4; a++)
        {
            JRadioButton current = new JRadioButton(titles[a]);
            current.setActionCommand(actions[a]);
            c.gridx = gridX[a];
            c.gridy = gridY[a];
            c.gridwidth = gridW[a];
            buttons.add(current);
            getContentPane().add(current,c);
        }
        c.gridwidth = 1;
        String[] title = new String[]{"      ","Width","Height"};
        gridX = new int[]{9,10,12};
        for (int a = 0; a< 3; a++)
        {
            c.gridx = gridX[a];
            getContentPane().add(new JLabel(title[a]),c);
        }
        c.gridx = 11;
        getContentPane().add(width,c);
        c.gridx = 13;
        getContentPane().add(height,c);
        c.gridx = 11;
        c.gridy = 0;
        c.gridwidth = 2;
        JButton button = new JButton("Done");
        button.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                ButtonModel x = buttons.getSelection();
                String size = "XXX";
                System.out.println("Getting screen resolution");
                int screenRes = Toolkit.getDefaultToolkit().getScreenResolution();
                System.out.println("Successfully got screen resolution");
                if (x!=null)
                    size = x.getActionCommand();
                try{
                    TimeTable.width = new Integer(size)*screenRes;
                    TimeTable.height = (int)((TimeTable.titleCount+1)*inchesPerTimeline*screenRes);
                }
                catch(NumberFormatException ex)
                {
                    try{
                        TimeTable.width = (int)(new Double(width.getText().trim())*screenRes);
                        TimeTable.height = (int)(new Double(height.getText().trim())*screenRes);
                    }
                    catch (NumberFormatException except)
                    {
                        return;
                    }
                }
                TimeTable.ready = true;
                System.out.println("Size selected");
                dispose();
            }
        });
        getContentPane().add(button,c);
        addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent winEvt){
                System.exit(0);
            }
        });
        setVisible(true);
    }
}

简明说明: 我有一个在Windows Vista中用完Excel的宏,我试图将它分发到运行Windows 7的计算机。执行后,代码在此之后无法继续执行,即它从未打印出“Size selected”字样。程序的其余部分从C:\ Users \?\ AppData \ TimeLineMacroProgram文件夹中引入csv文件,稍后在同一目录中创建一个图像。但这是目前被破坏的代码部分。每当GUI弹出时,我选择9“选项并单击”完成“,将9作为参数传入,然后打印出”Size Selected“,但它不会只处理窗口。请帮忙。

1 个答案:

答案 0 :(得分:0)

Longshot猜测:

如果宽度和高度文本字段没有内容,则动作侦听器会退出:在两个NumberFormatExceptions之后返回。这将阻止显示“选择的尺寸”,并且不会丢弃框架。如果您输出“成功获得屏幕分辨率”,然后它似乎停止工作,这可能是原因。但是,如果您遇到这种情况,然后单击其他内容然后单击“完成”,则会选择打印尺寸。