-4

我想用新名称保存现有的 Excel。但内容应该相同。它应该为任何 excel 执行另存为属性。请帮忙

4

1 回答 1

1

内容重命名另存为

引用重复的帖子

File oldfile = new File(old_name);
File newfile = new File(new_name);
boolean rename = oldfile.renameTo(newfile);

接口

当且仅当重命名成功时返回 true;否则为假

注意:构造文件对象不会在磁盘上创建文件!


更新:因为@prasanth 说问题是关于另存为功能,所以我正在添加该部分

另存为功能

来自重复帖子的参考

    FileChannel src = new FileInputStream(file1).getChannel();   
    FileChannel dest = new FileOutputStream(file2).getChannel();   
    dest.transferFrom(src, 0, src.size());
// also close FileChannel  objects
于 2013-09-09T05:46:40.240 回答