我测试了以下打印 UserAgent 属性的代码。但是我注意到执行代码需要相当长的时间。
// Initialize the WURFL library.
String projRoot = System.getProperty("user.dir");
wurflFile = projRoot + File.separator + "wurfl-2.3.3" + File.separator + "wurfl.xml";
File dataFile = new File(wurflFile);
wurfl = new CustomWURFLHolder(dataFile);
String deviceUrl = "Apple-iPhone5C1";
WURFLManager manager = wurfl.getWURFLManager();
Device device = manager.getDeviceForRequest(deviceUrl);
System.out.println("Device: " + device.getId());
System.out.println("Capability: " + device.getCapability("preferred_markup"));
System.out.println("Device UA: " + device.getUserAgent());
Map capabilities = device.getCapabilities();
System.out.println("Size of the map: " + capabilities.keySet().size());
Iterator itr = capabilities.keySet().iterator();
while (itr.hasNext()) {
String str = (String) itr.next();
System.out.println(str);
}
原因之一是加载和解析 WURFL XML 数据库文件(大约 20MB 大小)需要时间。
我想知道是否有任何不同的 WURFL API 可以提高这种性能?最终,我会将这段代码放在 HTTP 代理中,我想在其中检查设备配置文件参数以适应内容。
谢谢。