我運行一個服務器,它是一個通過批處理執行的jar文件。我試圖爲它製作一個包裝器,但是我找不到一種方法讓批處理文件的輸出在文本框上實時更新。 我使用至今的代碼看起來是這樣的: public partial class Form1 : Form
{
string output = "Server has not been started yet...";
public voi
我有一些代碼塊需要包裝的功能。 try:
if config.DEVELOPMENT == True:
# do_some_stuff
except:
logger.info("Config is not set for development")
然後,我會再次這樣做: try:
if config.DEVELOPMENT == True: