我正在尝试将 Minitemplator (http://www.source-code.biz/MiniTemplator/) 集成到 android 的应用程序中,但我有点迷失。
我可以访问模板文件,模板文件在资产目录中,我尝试以这种方式获取文件:
Uri path = Uri.parse("file:///android_asset/index.html");
并以这种方式实例化对象:
MiniTemplator t = new MiniTemplator(path.getPath());
但它向我发送了一个文件或文件夹不存在的 io 异常。
发送文件以实例化我的 minitemplator 对象的正确方法是什么?
这是完整的代码:
package com.kentverger.minitemplator;
import java.io.File;
import java.io.IOException;
import biz.source_code.miniTemplator.MiniTemplator;
import biz.source_code.miniTemplator.MiniTemplator.TemplateSyntaxException;
import android.net.Uri;
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;
import android.webkit.WebView;
public class Template extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_template);
WebView index = (WebView) findViewById(R.id.indexWebView);
Uri path = Uri.parse("file:///android_asset/index.html");
try {
MiniTemplator t = new MiniTemplator(path.getPath());
t.setVariable("titulo", "Hola mundo generado desde java");
String html_code = t.generateOutput();
index.loadData(html_code, "text/html", null);
} catch (TemplateSyntaxException e) {
Log.d("ERROR 1", e.getMessage());
} catch (IOException e) {
Log.d("ERROR 2", e.getMessage());
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_template, menu);
return true;
}
}