Java Code Examples for com.baidu.ueditor.define.State#isSuccess()

The following examples show how to use com.baidu.ueditor.define.State#isSuccess() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: StorageManager.java    From sdb-mall with Apache License 2.0 5 votes vote down vote up
public static State saveFileByInputStream(InputStream is, String path,
		long maxSize) {
	State state = null;

	File tmpFile = getTmpFile();

	byte[] dataBuf = new byte[ 2048 ];
	BufferedInputStream bis = new BufferedInputStream(is, StorageManager.BUFFER_SIZE);

	try {
		BufferedOutputStream bos = new BufferedOutputStream(
				new FileOutputStream(tmpFile), StorageManager.BUFFER_SIZE);

		int count = 0;
		while ((count = bis.read(dataBuf)) != -1) {
			bos.write(dataBuf, 0, count);
		}
		bos.flush();
		bos.close();

		if (tmpFile.length() > maxSize) {
			tmpFile.delete();
			return new BaseState(false, AppInfo.MAX_SIZE);
		}

		state = saveTmpFile(tmpFile, path);

		if (!state.isSuccess()) {
			tmpFile.delete();
		}

		return state;
		
	} catch (IOException e) {
	}
	return new BaseState(false, AppInfo.IO_ERROR);
}
 
Example 2
Source File: StorageManager.java    From sdb-mall with Apache License 2.0 5 votes vote down vote up
public static State saveFileByInputStream(InputStream is, String path) {
	State state = null;

	File tmpFile = getTmpFile();

	byte[] dataBuf = new byte[ 2048 ];
	BufferedInputStream bis = new BufferedInputStream(is, StorageManager.BUFFER_SIZE);

	try {
		BufferedOutputStream bos = new BufferedOutputStream(
				new FileOutputStream(tmpFile), StorageManager.BUFFER_SIZE);

		int count = 0;
		while ((count = bis.read(dataBuf)) != -1) {
			bos.write(dataBuf, 0, count);
		}
		bos.flush();
		bos.close();

		state = saveTmpFile(tmpFile, path);

		if (!state.isSuccess()) {
			tmpFile.delete();
		}

		return state;
	} catch (IOException e) {
	}
	return new BaseState(false, AppInfo.IO_ERROR);
}
 
Example 3
Source File: StorageManager.java    From wangmarket with Apache License 2.0 5 votes vote down vote up
public static State saveFileByInputStream(InputStream is, String path,
		long maxSize) {
	State state = null;

	File tmpFile = getTmpFile();

	byte[] dataBuf = new byte[ 2048 ];
	BufferedInputStream bis = new BufferedInputStream(is, StorageManager.BUFFER_SIZE);

	try {
		BufferedOutputStream bos = new BufferedOutputStream(
				new FileOutputStream(tmpFile), StorageManager.BUFFER_SIZE);

		int count = 0;
		while ((count = bis.read(dataBuf)) != -1) {
			bos.write(dataBuf, 0, count);
		}
		bos.flush();
		bos.close();

		if (tmpFile.length() > maxSize) {
			tmpFile.delete();
			return new BaseState(false, AppInfo.MAX_SIZE);
		}

		state = saveTmpFile(tmpFile, path);

		if (!state.isSuccess()) {
			tmpFile.delete();
		}

		return state;
		
	} catch (IOException e) {
	}
	return new BaseState(false, AppInfo.IO_ERROR);
}
 
Example 4
Source File: StorageManager.java    From wangmarket with Apache License 2.0 5 votes vote down vote up
public static State saveFileByInputStream(InputStream is, String path) {
	State state = null;

	File tmpFile = getTmpFile();

	byte[] dataBuf = new byte[ 2048 ];
	BufferedInputStream bis = new BufferedInputStream(is, StorageManager.BUFFER_SIZE);

	try {
		BufferedOutputStream bos = new BufferedOutputStream(
				new FileOutputStream(tmpFile), StorageManager.BUFFER_SIZE);

		int count = 0;
		while ((count = bis.read(dataBuf)) != -1) {
			bos.write(dataBuf, 0, count);
		}
		bos.flush();
		bos.close();

		state = saveTmpFile(tmpFile, path);

		if (!state.isSuccess()) {
			tmpFile.delete();
		}

		return state;
	} catch (IOException e) {
	}
	return new BaseState(false, AppInfo.IO_ERROR);
}
 
Example 5
Source File: StorageManager.java    From hsweb-framework with Apache License 2.0 5 votes vote down vote up
public static State saveFileByInputStream(InputStream is, String path,
                                          long maxSize) {

    File tmpFile = getTmpFile();

    byte[] dataBuf = new byte[2048];

    try (BufferedInputStream bis = new BufferedInputStream(is, StorageManager.BUFFER_SIZE);
         BufferedOutputStream bos = new BufferedOutputStream(
                 new FileOutputStream(tmpFile), StorageManager.BUFFER_SIZE)) {

        int count = 0;
        while ((count = bis.read(dataBuf)) != -1) {
            bos.write(dataBuf, 0, count);
        }
        bos.flush();
        bos.close();

        if (tmpFile.length() > maxSize) {
            tmpFile.delete();
            return new BaseState(false, AppInfo.MAX_SIZE);
        }

        State state = saveTmpFile(tmpFile, path);

        if (!state.isSuccess()) {
            tmpFile.delete();
        }

        return state;

    } catch (IOException e) {
    }
    return new BaseState(false, AppInfo.IO_ERROR);
}
 
Example 6
Source File: StorageManager.java    From hsweb-framework with Apache License 2.0 5 votes vote down vote up
public static State saveFileByInputStream(InputStream is, String path) {
    State state;

    File tmpFile = getTmpFile();

    byte[] dataBuf = new byte[2048];

    try (BufferedInputStream bis = new BufferedInputStream(is, StorageManager.BUFFER_SIZE);
         BufferedOutputStream bos = new BufferedOutputStream(
                 new FileOutputStream(tmpFile), StorageManager.BUFFER_SIZE)) {

        int count = 0;
        while ((count = bis.read(dataBuf)) != -1) {
            bos.write(dataBuf, 0, count);
        }
        bos.flush();
        bos.close();

        state = saveTmpFile(tmpFile, path);

        if (!state.isSuccess()) {
            tmpFile.delete();
        }

        return state;
    } catch (IOException e) {
        return new BaseState(false, AppInfo.IO_ERROR);
    }
}
 
Example 7
Source File: StorageManager.java    From cms with Apache License 2.0 5 votes vote down vote up
public static State saveFileByInputStream(InputStream is, String path,
		long maxSize) {
	State state = null;

	File tmpFile = getTmpFile();

	byte[] dataBuf = new byte[ 2048 ];
	BufferedInputStream bis = new BufferedInputStream(is, StorageManager.BUFFER_SIZE);

	try {
		BufferedOutputStream bos = new BufferedOutputStream(
				new FileOutputStream(tmpFile), StorageManager.BUFFER_SIZE);

		int count = 0;
		while ((count = bis.read(dataBuf)) != -1) {
			bos.write(dataBuf, 0, count);
		}
		bos.flush();
		bos.close();

		if (tmpFile.length() > maxSize) {
			tmpFile.delete();
			return new BaseState(false, AppInfo.MAX_SIZE);
		}

		state = saveTmpFile(tmpFile, path);

		if (!state.isSuccess()) {
			tmpFile.delete();
		}

		return state;
		
	} catch (IOException e) {
	}
	return new BaseState(false, AppInfo.IO_ERROR);
}
 
Example 8
Source File: StorageManager.java    From cms with Apache License 2.0 5 votes vote down vote up
public static State saveFileByInputStream(InputStream is, String path) {
	State state = null;

	File tmpFile = getTmpFile();

	byte[] dataBuf = new byte[ 2048 ];
	BufferedInputStream bis = new BufferedInputStream(is, StorageManager.BUFFER_SIZE);

	try {
		BufferedOutputStream bos = new BufferedOutputStream(
				new FileOutputStream(tmpFile), StorageManager.BUFFER_SIZE);

		int count = 0;
		while ((count = bis.read(dataBuf)) != -1) {
			bos.write(dataBuf, 0, count);
		}
		bos.flush();
		bos.close();

		state = saveTmpFile(tmpFile, path);

		if (!state.isSuccess()) {
			tmpFile.delete();
		}

		return state;
	} catch (IOException e) {
	}
	return new BaseState(false, AppInfo.IO_ERROR);
}
 
Example 9
Source File: LocalBase64Uploader.java    From cms with Apache License 2.0 5 votes vote down vote up
public static State save(String content, Map<String, Object> conf) {

        byte[] data = decode(content);

        long maxSize = ((Long) conf.get("maxSize")).longValue();

        if (!validSize(data, maxSize)) {
            return new BaseState(false, AppInfo.MAX_SIZE);
        }

        String suffix = FileType.getSuffix("JPG");

        String savePath = PathFormat.parse((String) conf.get("savePath"),
                (String) conf.get("filename"));

        savePath = savePath + suffix;
        String physicalPath = (String) conf.get("rootPath") + savePath;

        /* date:2017-10-7 14:34:27
            *  xzjie
            *  修改保存文件路径
            * */
        if(StringUtils.isNotBlank(Configuration.getLocalPath())){
            physicalPath=Configuration.getLocalPath() + savePath;
        }

        State storageState = StorageManager.saveBinaryFile(data, physicalPath);

        if (storageState.isSuccess()) {
            storageState.putInfo("url", PathFormat.format(savePath));
            storageState.putInfo("type", suffix);
            storageState.putInfo("original", "");
        }

        return storageState;
    }
 
Example 10
Source File: OSSBase64Uploader.java    From cms with Apache License 2.0 5 votes vote down vote up
public static State save(String content, Map<String, Object> conf) {

        byte[] data = decode(content);

        long maxSize = ((Long) conf.get("maxSize")).longValue();

        if (!validSize(data, maxSize)) {
            return new BaseState(false, AppInfo.MAX_SIZE);
        }

        String suffix = FileType.getSuffix("JPG");

        String savePath = PathFormat.parse((String) conf.get("savePath"),
                (String) conf.get("filename"));

        savePath = savePath + suffix;
        //String physicalPath = (String) conf.get("rootPath") + savePath;

        //State storageState = StorageManager.saveBinaryFile(data, physicalPath);
        State storageState = OSSStorageManager.saveBinaryFile(data, savePath);
        if (storageState.isSuccess()) {
            storageState.putInfo("url", PathFormat.format(savePath));
            storageState.putInfo("type", suffix);
            storageState.putInfo("original", "");
        }

        return storageState;
    }
 
Example 11
Source File: StorageManager.java    From ueditor with Apache License 2.0 5 votes vote down vote up
public static State saveFileByInputStream(InputStream is, String path,
		long maxSize) {
	State state = null;

	File tmpFile = getTmpFile();

	byte[] dataBuf = new byte[ 2048 ];
	BufferedInputStream bis = new BufferedInputStream(is, StorageManager.BUFFER_SIZE);

	try {
		BufferedOutputStream bos = new BufferedOutputStream(
				new FileOutputStream(tmpFile), StorageManager.BUFFER_SIZE);

		int count = 0;
		while ((count = bis.read(dataBuf)) != -1) {
			bos.write(dataBuf, 0, count);
		}
		bos.flush();
		bos.close();

		if (tmpFile.length() > maxSize) {
			tmpFile.delete();
			return new BaseState(false, AppInfo.MAX_SIZE);
		}

		state = saveTmpFile(tmpFile, path);

		if (!state.isSuccess()) {
			tmpFile.delete();
		}

		return state;
		
	} catch (IOException e) {
	}
	return new BaseState(false, AppInfo.IO_ERROR);
}
 
Example 12
Source File: StorageManager.java    From ueditor with Apache License 2.0 5 votes vote down vote up
public static State saveFileByInputStream(InputStream is, String path) {
	State state = null;

	File tmpFile = getTmpFile();

	byte[] dataBuf = new byte[ 2048 ];
	BufferedInputStream bis = new BufferedInputStream(is, StorageManager.BUFFER_SIZE);

	try {
		BufferedOutputStream bos = new BufferedOutputStream(
				new FileOutputStream(tmpFile), StorageManager.BUFFER_SIZE);

		int count = 0;
		while ((count = bis.read(dataBuf)) != -1) {
			bos.write(dataBuf, 0, count);
		}
		bos.flush();
		bos.close();

		state = saveTmpFile(tmpFile, path);

		if (!state.isSuccess()) {
			tmpFile.delete();
		}

		return state;
	} catch (IOException e) {
	}
	return new BaseState(false, AppInfo.IO_ERROR);
}
 
Example 13
Source File: Base64Uploader.java    From sdb-mall with Apache License 2.0 3 votes vote down vote up
public static State save(String content, Map<String, Object> conf) {
	
	byte[] data = decode(content);

	long maxSize = ((Long) conf.get("maxSize")).longValue();

	if (!validSize(data, maxSize)) {
		return new BaseState(false, AppInfo.MAX_SIZE);
	}

	String suffix = FileType.getSuffix("JPG");

	String savePath = PathFormat.parse((String) conf.get("savePath"),
			(String) conf.get("filename"));
	
	savePath = savePath + suffix;
	String physicalPath = (String) conf.get("rootPath") + savePath;

	State storageState = StorageManager.saveBinaryFile(data, physicalPath);

	if (storageState.isSuccess()) {
		storageState.putInfo("url", PathFormat.format(savePath));
		storageState.putInfo("type", suffix);
		storageState.putInfo("original", "");
	}

	return storageState;
}
 
Example 14
Source File: Base64Uploader.java    From wangmarket with Apache License 2.0 3 votes vote down vote up
public static State save(String content, Map<String, Object> conf) {
	
	byte[] data = decode(content);

	long maxSize = ((Long) conf.get("maxSize")).longValue();

	if (!validSize(data, maxSize)) {
		return new BaseState(false, AppInfo.MAX_SIZE);
	}

	String suffix = FileType.getSuffix("JPG");

	String savePath = PathFormat.parse((String) conf.get("savePath"),
			(String) conf.get("filename"));
	
	savePath = savePath + suffix;
	String physicalPath = (String) conf.get("rootPath") + savePath;

	State storageState = StorageManager.saveBinaryFile(data, physicalPath);

	if (storageState.isSuccess()) {
		storageState.putInfo("url", PathFormat.format(savePath));
		storageState.putInfo("type", suffix);
		storageState.putInfo("original", "");
	}

	return storageState;
}
 
Example 15
Source File: Base64Uploader.java    From cms with Apache License 2.0 3 votes vote down vote up
public static State save(String content, Map<String, Object> conf) {
	
	byte[] data = decode(content);

	long maxSize = ((Long) conf.get("maxSize")).longValue();

	if (!validSize(data, maxSize)) {
		return new BaseState(false, AppInfo.MAX_SIZE);
	}

	String suffix = FileType.getSuffix("JPG");

	String savePath = PathFormat.parse((String) conf.get("savePath"),
			(String) conf.get("filename"));
	
	savePath = savePath + suffix;
	String physicalPath = (String) conf.get("rootPath") + savePath;

	State storageState = StorageManager.saveBinaryFile(data, physicalPath);

	if (storageState.isSuccess()) {
		storageState.putInfo("url", PathFormat.format(savePath));
		storageState.putInfo("type", suffix);
		storageState.putInfo("original", "");
	}

	return storageState;
}
 
Example 16
Source File: Base64Uploader.java    From ueditor with Apache License 2.0 3 votes vote down vote up
public static State save(String content, Map<String, Object> conf) {
	
	byte[] data = decode(content);

	long maxSize = ((Long) conf.get("maxSize")).longValue();

	if (!validSize(data, maxSize)) {
		return new BaseState(false, AppInfo.MAX_SIZE);
	}

	String suffix = FileType.getSuffix("JPG");

	String savePath = PathFormat.parse((String) conf.get("savePath"),
			(String) conf.get("filename"));
	
	savePath = savePath + suffix;
	String physicalPath = (String) conf.get("rootPath") + savePath;

	State storageState = StorageManager.saveBinaryFile(data, physicalPath);

	if (storageState.isSuccess()) {
		storageState.putInfo("url", PathFormat.format(savePath));
		storageState.putInfo("type", suffix);
		storageState.putInfo("original", "");
	}

	return storageState;
}