本文整理汇总了Java中de.schlichtherle.truezip.file.TConfig.setArchiveDetector方法的典型用法代码示例。如果您正苦于以下问题:Java TConfig.setArchiveDetector方法的具体用法?Java TConfig.setArchiveDetector怎么用?Java TConfig.setArchiveDetector使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类de.schlichtherle.truezip.file.TConfig
的用法示例。
在下文中一共展示了TConfig.setArchiveDetector方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: WarHelperImplTest
import de.schlichtherle.truezip.file.TConfig; //导入方法依赖的package包/类
public WarHelperImplTest()
{
super(new LogOutput()
{
@Override
public void info(Object message)
{
System.out.println(message);
}
});
TConfig config = TConfig.get();
config.setArchiveDetector(new TArchiveDetector("war|amp", new ZipDriver(IOPoolLocator.SINGLETON)));
}
示例2: configureGlobally
import de.schlichtherle.truezip.file.TConfig; //导入方法依赖的package包/类
protected void configureGlobally(TConfig trueZipConfig) {
trueZipConfig.setArchiveDetector(new TArchiveDetector(new SuffixSet(
ImmutableList.copyOf(Iterables.<String>concat(
MediaType.APPLICATION_ZIP.supportedExtensions(),
MediaType.APPLICATION_JAR.supportedExtensions()
))).toString()));
}