求 java 的idea中文版本,英文的看不懂呀? 使英语版idea变成中文版
- intellij idea怎么修改成中文
- 我想学JAVA但有不懂怎么下载安装最新版JDK(官网都是英语看不懂),希望有高手教下。最好能详细点!呵呵
- 谁有SetCpu汉化版的给我一个,英文版的看不懂啊,而且我的平板电脑耗电一流的。
- 求java中getActionCommand方法的一个简单的实例。不懂getActionCommand方法是干什么用的,API看了不解
intellij idea怎么修改成中文
1、首先需要打开IntelliJ Idea,点击File菜单-->Settings...选项。
2、在打开的对话框中,选择Editor-->File Encodings选项。
3、更改右侧关于Project的编码,让其保持一致。
4、在代码上点右键,在弹出的菜单中选择File Encode,将这具编码也设置为UTF-8。
5、编码统一后即显示中文。
我想学JAVA但有不懂怎么下载安装最新版JDK(官网都是英语看不懂),希望有高手教下。最好能详细点!呵呵
http://www.oracle/technetwork/java/javase/downloads/jdk-6u25-download-346242.html
里面有一行是
Windows x86 76.66 MB jdk-6u25-windows-i586.exe
下下来安装就可以了
谁有SetCpu汉化版的给我一个,英文版的看不懂啊,而且我的平板电脑耗电一流的。
在统一下载网可以搜索到 是绿色版的
求java中getActionCommand方法的一个简单的实例。不懂getActionCommand方法是干什么用的,API看了不解
import java.awt.event.*;
import java.awt.*;
import javax.swing.*;
public class TestApp implements ActionListener
{
JFrame f = new JFrame("getActionCommand() Test");
public JMenuBar menuBar;
public TestApp(){
menuBar = new JMenuBar();
JMenu Option = new JMenu("Option");
ButtonGroup group = new ButtonGroup();
JRadioButtonMenuItem stadmodel = new JRadioButtonMenuItem("Standard", true);
stadmodel.addActionListener(this);
Option.add(stadmodel);
group.add(stadmodel);
JRadioButtonMenuItem scicemodel = new JRadioButtonMenuItem("Science");
scicemodel.addActionListener(this);
Option.add(scicemodel);
group.add(scicemodel);
Option.setMnemonic(KeyEvent.VK_O);
JMenu About = new JMenu("About");
JMenuItem about = new JMenuItem("About calculator");
About.add(about);
About.setMnemonic(KeyEvent.VK_A);
menuBar.add(Option);
menuBar.add(About);
about.addActionListener(this);
}
public void actionPerformed(ActionEvent e) {
if(e.getActionCommand().equals("About calculator"))
JOptionPane.showMessageDialog(null,
"JCaculator version 1.0\n copyright zsl\nahfaj@hotmail");
if(e.getActionCommand().equals("Science")) {
JOptionPane.showMessageDialog(null,
"Science selected"); }
if(e.getActionCommand().equals("Standard")) {
JOptionPane.showMessageDialog(null,
"Science selected"); }
}
public static void main(String[] args)
{
TestApp appFrame = new TestApp();
appFrame.f.setJMenuBar(appFrame.menuBar);
appFrame.f.setSize(500,250);
appFrame.f.setResizable(false);
appFrame.f.getContentPane().setLayout(new GridLayout());
appFrame.f.setVisible(true);
}
}