All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zusmart.base.scanner.support.ScannerResultForDirResource Maven / Gradle / Ivy

Go to download

提供基础的工具类及方法类,Logging,Scanner,Buffer,NetWork,Future,Thread

There is a newer version: 1.0.6
Show newest version
package com.zusmart.base.scanner.support;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;

import com.zusmart.base.scanner.ScannerResultForResource;

public class ScannerResultForDirResource extends AbstractScannerResult implements ScannerResultForResource {

	private final File target;

	protected ScannerResultForDirResource(File parent, File target) {
		super(target.getName(), target.getPath());
		this.target = target;
	}

	@Override
	public boolean isClass() {
		return false;
	}

	@Override
	public boolean isResource() {
		return true;
	}

	@Override
	public boolean isFromJarFile() {
		return false;
	}

	@Override
	public boolean isFromDirFile() {
		return true;
	}

	@Override
	public InputStream getInputStream() throws IOException {
		return new FileInputStream(this.target);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy