本文整理汇总了Java中com.liferay.portal.kernel.util.FileUtil.getShortFileName方法的典型用法代码示例。如果您正苦于以下问题:Java FileUtil.getShortFileName方法的具体用法?Java FileUtil.getShortFileName怎么用?Java FileUtil.getShortFileName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.liferay.portal.kernel.util.FileUtil
的用法示例。
在下文中一共展示了FileUtil.getShortFileName方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addDDMStructures
import com.liferay.portal.kernel.util.FileUtil; //导入方法依赖的package包/类
protected void addDDMStructures(
String parentStructureId, String structuresDirName)
throws Exception {
Set<String> resourcePaths = servletContext.getResourcePaths(
resourcesDir.concat(structuresDirName));
if (resourcePaths == null) {
return;
}
for (String resourcePath : resourcePaths) {
if (resourcePath.endsWith(StringPool.SLASH)) {
continue;
}
String name = FileUtil.getShortFileName(resourcePath);
URL url = servletContext.getResource(resourcePath);
URLConnection urlConnection = url.openConnection();
addDDMStructures(
parentStructureId, name, urlConnection.getInputStream());
}
}
示例2: addDDMTemplates
import com.liferay.portal.kernel.util.FileUtil; //导入方法依赖的package包/类
protected void addDDMTemplates(
String ddmStructureKey, String templatesDirName)
throws Exception {
Set<String> resourcePaths = servletContext.getResourcePaths(
resourcesDir.concat(templatesDirName));
if (resourcePaths == null) {
return;
}
for (String resourcePath : resourcePaths) {
if (resourcePath.endsWith(StringPool.SLASH)) {
continue;
}
String name = FileUtil.getShortFileName(resourcePath);
URL url = servletContext.getResource(resourcePath);
URLConnection urlConnection = url.openConnection();
addDDMTemplates(
ddmStructureKey, name, urlConnection.getInputStream());
}
}
示例3: addDDMTemplates
import com.liferay.portal.kernel.util.FileUtil; //导入方法依赖的package包/类
protected void addDDMTemplates(String ddmStructureKey, String dirName)
throws Exception {
Set<String> resourcePaths = servletContext.getResourcePaths(
resourcesDir.concat(dirName));
if (resourcePaths == null) {
return;
}
for (String resourcePath : resourcePaths) {
if (resourcePath.endsWith(StringPool.SLASH)) {
continue;
}
String name = FileUtil.getShortFileName(resourcePath);
URL url = servletContext.getResource(resourcePath);
URLConnection urlConnection = url.openConnection();
addDDMTemplates(
ddmStructureKey, name, urlConnection.getInputStream());
}
}
示例4: addDDMTemplate
import com.liferay.portal.kernel.util.FileUtil; //导入方法依赖的package包/类
protected void addDDMTemplate(
long templateGroupId, long ddmStructureId, String fileName,
String language, String script, String type, String mode)
throws Exception {
fileName = FileUtil.getShortFileName(fileName);
fileName = FileUtil.stripExtension(fileName);
String name = getName(fileName);
DDMTemplate ddmTemplate = DDMTemplateLocalServiceUtil.fetchTemplate(
groupId, PortalUtil.getClassNameId(DDMStructure.class),
getKey(fileName));
if (ddmTemplate != null) {
if (!developerModeEnabled) {
if (_log.isInfoEnabled()) {
_log.info(
"DDM template with name " + name + " and version " +
version + " already exists");
}
return;
}
DDMTemplateLocalServiceUtil.deleteTemplate(ddmTemplate);
}
DDMTemplateLocalServiceUtil.addTemplate(
userId, templateGroupId,
PortalUtil.getClassNameId(DDMStructure.class), ddmStructureId,
getKey(fileName), getMap(name), null, type, mode, language, script,
false, false, StringPool.BLANK, null, serviceContext);
}
示例5: addJournalArticles
import com.liferay.portal.kernel.util.FileUtil; //导入方法依赖的package包/类
protected void addJournalArticles(
String ddmStructureKey, String ddmTemplateKey,
String articlesDirName)
throws Exception {
Set<String> resourcePaths = servletContext.getResourcePaths(
resourcesDir.concat(articlesDirName));
if (resourcePaths == null) {
return;
}
for (String resourcePath : resourcePaths) {
if (resourcePath.endsWith(StringPool.SLASH)) {
continue;
}
String name = FileUtil.getShortFileName(resourcePath);
URL url = servletContext.getResource(resourcePath);
URLConnection urlConnection = url.openConnection();
addJournalArticles(
ddmStructureKey, ddmTemplateKey, name,
urlConnection.getInputStream());
}
}
示例6: addDLFolder
import com.liferay.portal.kernel.util.FileUtil; //导入方法依赖的package包/类
protected long addDLFolder(long parentFolderId, String resourcePath)
throws Exception {
long folderId = super.addDLFolder(
parentFolderId,
FileUtil.getShortFileName(FileUtil.getPath(resourcePath)));
_folderIds.put(resourcePath, folderId);
Set<String> resourcePaths = servletContext.getResourcePaths(
resourcePath);
if ((resourcePaths == null) || resourcePaths.isEmpty()) {
return folderId;
}
for (String curResourcePath : resourcePaths) {
if (curResourcePath.endsWith(StringPool.SLASH)) {
addDLFolder(folderId, curResourcePath);
}
else {
addDLFileEntry(curResourcePath);
}
}
return folderId;
}
示例7: addJournalArticles
import com.liferay.portal.kernel.util.FileUtil; //导入方法依赖的package包/类
protected void addJournalArticles(
String ddmStructureKey, String ddmTemplateKey, String dirName)
throws Exception {
Set<String> resourcePaths = servletContext.getResourcePaths(
resourcesDir.concat(dirName));
if (resourcePaths == null) {
return;
}
for (String resourcePath : resourcePaths) {
if (resourcePath.endsWith(StringPool.SLASH)) {
continue;
}
String name = FileUtil.getShortFileName(resourcePath);
URL url = servletContext.getResource(resourcePath);
URLConnection urlConnection = url.openConnection();
addJournalArticles(
ddmStructureKey, ddmTemplateKey, name,
urlConnection.getInputStream());
}
}