static public void uploadFile(IInfoStore infoStore, String filename, String title, int parentId) throws SDKException { IInfoObjects infoObjects = infoStore.newInfoObjectCollection(); IInfoObject newInfoObject = infoObjects.add(CeKind.EXCEL); newInfoObject.setTitle(title); newInfoObject.getFiles().addFile(filename); newInfoObject.setParentID(parentId); infoStore.commit(infoObjects); }
How to Upload an Excel File to CMS Programmatically Using BO Java SDK
Leave a reply