红盟学苑Burpsuite编码器、扩展、日志、配置、编码器
return "Future Result";
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
});
System.out.println("我把工作提交了");
// 获取 future 结果
System.out.println(future.get());
System.out.println("我提交的工作做完了");
}}