मैं यह सुनिश्चित करने की कोशिश कर रहा हूं कि मेरा जावा एप्लिकेशन मजबूत होने के लिए उचित कदम उठाता है, और इसके कुछ भाग को शालीनतापूर्वक बंद करना शामिल है। मैं शटडाउन हुक के बारे में पढ़ रहा हूं और मुझे वास्तव में अभ्यास में उनका उपयोग करने का तरीका नहीं मिला।
वहाँ एक व्यावहारिक उदाहरण है?
मान लीजिए कि मेरे पास इस तरह का एक बहुत ही सरल अनुप्रयोग था, जो 100 के बैचों में एक फाइल, 10 से एक लाइन पर संख्याओं को लिखता है, और मैं यह सुनिश्चित करना चाहता हूं कि यदि प्रोग्राम बाधित है, तो एक दिया हुआ बैच खत्म हो जाए। मुझे शटडाउन हुक को पंजीकृत करने का तरीका मिलता है लेकिन मुझे नहीं पता कि मुझे अपने आवेदन में कैसे एकीकृत करना है। कोई सुझाव?
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();
}
}
}