问题描述
- eclipse可以运行的程序在Dos窗口下出现好多不明的错误
-
源代码如下
package ch1;
//import java.io.*;public class TestEx{
public void m(int i_int) throws ArithmeticException{
if(i_int==0)
throw new ArithmeticException("被除数为零");} public static void main(String[] args){ /* try{ System.out.println(2/0); }catch(ArithmeticException ae){ System.out.println("error!"); ae.printStackTrace(); } */ TestEx me=new TestEx(); me.m(0); }
解决方案
看看你eclipse设置的是不是UTF-8格式的。这里要求是GBK
时间: 2025-01-26 23:13:18