第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何只加載一次屬性文件?

如何只加載一次屬性文件?

墨色風(fēng)雨 2023-08-09 16:59:51
我正在通過從屬性文件獲取數(shù)據(jù)來讀取電子郵件消息。我正在使用計(jì)時(shí)器計(jì)劃在一段時(shí)間后定期讀取新消息。我該如何執(zhí)行此操作?TimerSchedule.javapublic class TimeScheduler{    public static void main(String[] args)    {        Timer timer = new Timer();        GmailConfiguration gmailConfiguration = new GmailConfiguration();        TimerTask timerTask = new TimerTask()        {            @Override            public void run()            {                gmailConfiguration.configure();            }        };        timer.scheduleAtFixedRate(timerTask, 500, 30000);    }}我正在從 GmailConfiguration.java 中的屬性文件獲取數(shù)據(jù)這是我的 GmailConfiguration.javapublic class GmailConfiguration{    private static final Logger LOGGER = LoggerFactory.getLogger(GmailConfiguration.class);    public void configure()    {        JSONParser parser = new JSONParser();        try        {            String propertyFileName = "emailServer.properties";            InputStream inputStream = getClass().getClassLoader().getResourceAsStream(propertyFileName);            JSONObject jsonObject = (JSONObject) parser.parse(new InputStreamReader(inputStream, StandardCharsets.UTF_8));            JSONArray jadata = (JSONArray) jsonObject.get("Servers");            int len = jadata.size();            AccessMailMessages readGmail = new AccessMailMessages();            JSONObject server;            String name;            String host;            String username;            String password;            int port;            String folderName;            for (int i = 0; i < len; i++)
查看完整描述

1 回答

?
拉莫斯之舞

TA貢獻(xiàn)1820條經(jīng)驗(yàn) 獲得超10個(gè)贊

Configuration將類與類分開EmailReceiver:


// Utilizes "Singleton" pattern

class GmailConfiguration {

  private static final GmailConfiguration INSTANCE = new GmailConfiguration();


  boolean isConfigured;

  String host;

  String port;

  //etc.


  public void configure() {

    if (!isConfigured) {

      // read in the properties, populate host/port etc.

      isConfigured = true;

    }

    // when called for the second time, reading won't happen

  }

}

然后,至于接收電子郵件:


class GmailReceiver {

  public void receive() {

    AccessMailMessages readGmail = new AccessMailMessages();

    GmailConfiguration config = GmailConfiguration.INSTANCE;

    config.configure();

    readGmail.recieveGmail(config.getName(),

        config.getHost(), 

        config.getPort() /* etc */);


  }

}

并確保只安排GmailReceiver


查看完整回答
反對(duì) 回復(fù) 2023-08-09
  • 1 回答
  • 0 關(guān)注
  • 101 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)