应该是路径问题。
把你要显示的放在你的Test类里,
再把 :con = new ImageIcon("D:\\java程序\\1jpg");
改成 : icon = new ImageIcon("/1jpg");
你试试,看行不。
图像的高度和宽度只有在图像被完全加载后才是有效的 ,你虽然已经把显示在frame上,可是你绝对是在没有完全加载时打印的!
/
Determines the width of the image If the width is not yet known,
this method returns <code>-1</code> and the specified
<code>ImageObserver</code> object is notified later
@param observer an object waiting for the image to be loaded
@return the width of this image, or <code>-1</code>
if the width is not yet known
@see javaawtImage#getHeight
@see javaawtimageImageObserver
/
public abstract int getWidth(ImageObserver observer);
你还是这样写吧,可以获取的:
URLClassLoader urlLoader = (URLClassLoader) TestImageclass
getClassLoader();
URL fileLoc = urlLoaderfindResource("images/gopng");
BufferedImage bi = javaximageioImageIOread(fileLoc);
Systemoutprintln(bigetWidth());//150
<input type="text" size="4" value="10" name="fileSizeLimit" id="fileSizeLimit"/> K
<input type="file" name="file1" id="file1" size="40" onchange="changeSrc(this)"/>
<img src="about:blank" id="fileChecker" alt="test" height="18"/>
//前面为网页
<script type="text/javascript">
var oFileChecker = documentgetElementById("fileChecker");
function changeSrc(filePicker)
{
oFileCheckersrc = filePickervalue;//读
}
//这个很重要,判断是否完全读完,否则判断大小不准确
oFileCheckeronreadystatechange = function ()
{
if (oFileCheckerreadyState == "complete")
{
checkSize();
}
}
function checkSize()
{
var limit = documentgetElementById("fileSizeLimit")value 1024;
if (oFileCheckerfileSize > limit)
{
alert("too large");
}
else
{
alert("ok");
}
}
</script>
后台获取到文件了么FilegetName就是文件名了
这个方法就是保存文件用的了 调用saveFile(filegetInputStrean,filegetName);
private void saveFile(InputStream inputStream, String fileName) {OutputStream os = null; try {
String path = "D:\\testFile\\"; // 2、保存到临时文件 // 1K的数据缓冲
byte[] bs = new byte[1024]; // 读取到的数据长度
int len; // 输出的文件流保存到本地文件
File tempFile = new File(path); if (!tempFileexists()) {
tempFilemkdirs();
}
os = new FileOutputStream(tempFilegetPath() + Fileseparator + fileName); // 开始读取
while ((len = inputStreamread(bs)) != -1) {
oswrite(bs, 0, len);
}
} catch (IOException e) {
eprintStackTrace();
} catch (Exception e) {
eprintStackTrace();
} finally { // 完毕,关闭所有链接
try {
osclose();
inputStreamclose();
} catch (IOException e) {
eprintStackTrace();
}
}
}
import javaawtimageBufferedImage;
import javaioFile;
import javaioIOException;
import javaximageioImageIO;
public class Test {
public static void main(String[] args) throws IOException {
zoomImage("c:/2jpg", "c:/222jpg", 800, 600);
}
/
改变尺寸
@param srcFileName 源路径
@param tagFileName 目的路径
@param width 修改后的宽度
@param height 修改后的高度
/
public static void zoomImage(String srcFileName,String tagFileName,int width,int height){
try {
BufferedImage bi = ImageIOread(new File(srcFileName));
BufferedImage tag=new BufferedImage(width,height, BufferedImageTYPE_INT_RGB);
taggetGraphics()drawImage(bi, 0, 0, width, height, null);
ImageIOwrite(tag, "jpg", new File(tagFileName));
} catch (IOException e) {
eprintStackTrace();
}
}
}
以上就是关于JAVA 图片大小设置全部的内容,包括:JAVA 图片大小设置、【紧急求助!!】java 获取图像宽度始终为-1,请教高手!!、java在页面上 验证上传的图片的尺寸 <input type="file" id="img1" name="img1" >等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)