abrègement_///_n.m. 缩短,删节,节略
abréger_///_v.t. 1. 缩短;使显得短:La compagnie abrege le chemin. 有人作伴,路程就显得短了.;  2. 删节,节略:abreger un article 节略一篇文章;   abreger un mot 缩写一个词
abrégez_///_v. 缩短(缩写,约分)
abrégé_///_n.m. 1.摘要;梗概,概要;节略,节本;2.纲要,概要;简明教程;3.简略的,省略的;简要的
abréviatif,ive_///_adj. 省略的,略写的
abréviation_///_n.   省略,缩写;略语,缩写词

解决方案 »

  1.   

    java文件我是这样写的:package acticle.tool;
    import java.io.*;
    import java.text.SimpleDateFormat;
    import java.util.*;/**
     * @author Administrator
     */
    public class TxtToTable {
    public static void main(String[] args) throws Exception{
    String path="C:\\job\\quick_english.txt";
    TxtToTable ttt=new TxtToTable();
    int flag=ttt.insertToMainTable(path);
    if(flag==0){
    System.out.print("插入成功");
    }
    }
    public int insertToMainTable(String path){
    int flag=0;
    String date="";
    File file=new File(path);
    try{
    if(file.exists()){
    RandomAccessFile raf=new RandomAccessFile(file,"r"); 
    String str="",s=null;
    while((s=raf.readLine())!=null){
    String str1 = new String(s.getBytes("ISO_8859_1"),"gbk");
    System.out.println(str1);
              } raf.close();
    }
    flag=0;
    }catch(FileNotFoundException e){
    flag=-1;
    }catch(UnsupportedEncodingException ex){
    flag=-2;
    }catch(IOException ex1){
    flag=3;
    }catch(Exception ex2){
    flag=4;
    }
    return flag;
    }
      

  2.   

    用EMEDITER这个软件吧 很不错 轻松的转换各个编码