gpt4 book ai didi

java - 如何使用 jcreator 制作复制粘贴脚本?

转载 作者:行者123 更新时间:2023-12-02 08:36:56 26 4
gpt4 key购买 nike

你能帮我编写java编码吗,这样我就可以使用命令提示符复制单个文件。

所以,我想从Windows的命令提示符运行java文件,例如“java“我的java脚本”“我的文件目标””,并在同一目录中复制我的“我的文件目标”而不替换旧的一个。

请帮帮我?

我想出了这个

import java.io.*;
class ReadWrite {
public static void main(String args[]) throws IOException {
FileInputStream fis = new FileInputStream(args[0]);
FileOutputStream fos = new FileOutputStream("output.txt");
int n;
if(args.length != 1)
throw (new RuntimeException("Usage : java ReadWrite <filetoread> <filetowrite>"));
while((n=fis.read()) >= 0)
fos.write(n);
}
}

但是文件的副本被命名为output.txt如果我想选择自己的输出名称,你们可以帮我编码吗?如果我在命令提示符下输入“java ReadWrite input.txt(这是我想要的输出名称)”

这里真的需要帮助...

最佳答案

import java.util.Scanner;

public class program_23{ // start of class

public static void main(String []args){ // start of main function.

Scanner input = new Scanner (System.in);

// decleration ang initialization of variables
String name = " ";
int age = 0;
int no_of_hour_work = 0;
double daily_rate = 0.0;

// get user input
System.out.print("Employee Name: ");
name = input.nextLine();

System.out.print("Employee Age: ");
age = input.nextInt();

System.out.print("No of hour(s) work: ");
no_of_hour_work = input.nextInt();

// compute for daily rate
daily_rate = no_of_hour_work * 95.75;

// display the daily rate
System.out.print("Dialy rate:"+ daily_rate);

}// end of main

}// end of class

关于java - 如何使用 jcreator 制作复制粘贴脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1403224/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com