java使用追加的形式将26个小写字母写入到一个txt文件中

 我来答
暮影1994
2015-11-13 · TA获得超过2338个赞
知道大有可为答主
回答量:1215
采纳率:60%
帮助的人:390万
展开全部
import java.io.File;
import java.io.RandomAccessFile;

/**
 * 
 * @author sie1501
 *
 */
public class AddCharacter {

    private static RandomAccessFile accessFile;// 定义RandomAccessFile对象对文件进行操作
    private static String dir = "D:\\char.txt";// 文件路径

    /**
     * 往文件追加新的字符
     * 
     * @param newChar
     *            字符
     * @return 追加成功返回true,否则返回false
     */
    public static boolean addChar(char newChar) {
        try {
            File file = new File(dir);

            accessFile = new RandomAccessFile(file, "rw");

            long length = file.length();// 获取文件长度
            accessFile.seek(length);// 末尾处添加内容

            accessFile.writeChars(String.valueOf(newChar));// 写入操作

            accessFile.close();
            return true;

        } catch (Exception e) {// 异常捕获
            // TODO: handle exception
            e.printStackTrace();
        }
        return false;
    }

    public static void main(String[] args) {
        for (char charIndex = 'a'; charIndex <= 'z'; charIndex++) {
            if (!addChar(charIndex)) {// 错误提示
                System.out.println("Add character: " + charIndex + "  was failure");
            }
        }
        System.out.println("--------------  End ---------------");
    }

}
匿名用户
推荐于2018-04-27
展开全部
FileOutputStream 的构造中,有参数

FileOutputStream(String name,
boolean append)
Creates an output file stream to write to the file with the specified
name.

FileOutputStream(File file,
boolean append)
Creates a file output stream to write to the file represented by
the specified File object.
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式