0
liferay 및 그 작동을위한 openoffice를 구성했습니다. .ppt 형식의 미리보기를 볼 수 있지만 lifteray는 ppt 형식의 미리보기를 생성하지 않습니다..pps 포매팅이 생애에 생기지 않습니다.
liferay 및 그 작동을위한 openoffice를 구성했습니다. .ppt 형식의 미리보기를 볼 수 있지만 lifteray는 ppt 형식의 미리보기를 생성하지 않습니다..pps 포매팅이 생애에 생기지 않습니다.
좋아 나는 내가 아니라 아래
String sourceFileName = file.getName();
String mimeType =MimeTypesUtil.getContentType(file);
int index = sourceFileName.indexOf(".");
String extension = sourceFileName.substring(index);
String name = sourceFileName.substring(0 ,index);
if(extension.equalsIgnoreCase(".pps")){
sourceFileName = name+".ppt";
}
String title = "title name";
String description="desc of video";
String changeLog = StringPool.BLANK;
ServiceContext serviceContext = new ServiceContext();
serviceContext.setAddCommunityPermissions(true);
serviceContext.setAddGuestPermissions(true);
serviceContext.setAddGroupPermissions(true);
DLAppLocalServiceUtil.addFileEntry(userId, repositoryId, folderId, sourceFileName, mimeType, title, description, changeLog, file, serviceContext);
같은 백 엔드를 .ppt로하는 확장 폼 .PPS를 변경하는 것이 한 일 때문에이 문제에 대한 해결책을 찾을 수 없습니다 그것은 ABD는 나를 위해 일한으로 미리보기를 제작하고 있습니다. 올바른 방법인지 아닌지는 잘 모르겠지만 나를 위해 일하고 있습니다.
[여기와 동일] (http://www.liferay.com/community/forums/-message_boards/message/30822245). –