Velocity JAVAエンジンテンプレート(9)vmファイルをロードする3つの方法


Velocity JAVAエンジンテンプレート(9)vmファイルをロードする3つの方法
方法1:classpathディレクトリの下のvmファイルをロードする
		Properties prop = new Properties();
        prop.setProperty("file.resource.loader.class", "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader");
        prop.setProperty(Velocity.ENCODING_DEFAULT, "UTF-8");
        prop.setProperty(Velocity.INPUT_ENCODING, "UTF-8");
        prop.setProperty(Velocity.OUTPUT_ENCODING, "UTF-8");
        Velocity.init(prop);

方式2:構成ファイルの読み込み
  • コード
  •  	    //    
            Properties properties = new Properties();
            properties.load(Test.class.getClassLoader().getResourceAsStream("velocity.properties"));
            Velocity.init(properties);
    
  • velocity.properties
  •  	   
    #        
    input.encoding=UTF-8
    #  velocity servlet           
    default.contentType=text/html;charset=UTF-8
    #        
    output.encoding=UTF-8
    

    方法3:絶対パスに基づいてロード
    		Properties properties = new Properties();
            properties.setProperty(VelocityEngine.FILE_RESOURCE_LOADER_PATH, "d://");
            Velocity.init(properties);