2013-10-29 4 views

답변

0

좋아 나는 내가 아니라 아래

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는 나를 위해 일한으로 미리보기를 제작하고 있습니다. 올바른 방법인지 아닌지는 잘 모르겠지만 나를 위해 일하고 있습니다.

+0

[여기와 동일] (http://www.liferay.com/community/forums/-message_boards/message/30822245). –