Java中关闭钩子的有用示例?
2022-08-31 08:29:17
我试图确保我的Java应用程序采取合理的步骤来健壮,其中一部分涉及优雅地关闭。我正在阅读有关关闭钩子的文章,实际上我并不知道如何在实践中使用它们。
有没有一个实际的例子?
假设我有一个非常简单的应用程序,就像下面的这个,它将数字写入文件,将10写入一行,每批100个,我想确保在程序中断时给定的批处理完成。我得到了如何注册关闭钩子,但我不知道如何将其集成到我的应用程序中。有什么建议吗?
package com.example.test.concurrency;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintWriter;
public class GracefulShutdownTest1 {
final private int N;
final private File f;
public GracefulShutdownTest1(File f, int N) { this.f=f; this.N = N; }
public void run()
{
PrintWriter pw = null;
try {
FileOutputStream fos = new FileOutputStream(this.f);
pw = new PrintWriter(fos);
for (int i = 0; i < N; ++i)
writeBatch(pw, i);
}
catch (FileNotFoundException e) {
e.printStackTrace();
}
finally
{
pw.close();
}
}
private void writeBatch(PrintWriter pw, int i) {
for (int j = 0; j < 100; ++j)
{
int k = i*100+j;
pw.write(Integer.toString(k));
if ((j+1)%10 == 0)
pw.write('\n');
else
pw.write(' ');
}
}
static public void main(String[] args)
{
if (args.length < 2)
{
System.out.println("args = [file] [N] "
+"where file = output filename, N=batch count");
}
else
{
new GracefulShutdownTest1(
new File(args[0]),
Integer.parseInt(args[1])
).run();
}
}
}