码迷,mamicode.com
首页 >  
搜索关键字:buffered    ( 344个结果
e670. 缓冲图像转换为图像
// This method returns an Image object from a buffered image public static Image toImage(BufferedImage bufferedImage) { return Toolkit.getDefaultToolk... ...
分类:其他好文   时间:2018-09-02 23:56:40    阅读次数:184
e669. 绘制缓冲图像
To draw on a buffered image, create a graphics context on the buffered image. If the buffered image supports transparency, (see e661 确定图像中是否有透明像素), pi ...
分类:其他好文   时间:2018-09-02 23:49:47    阅读次数:272
e675. 翻转缓冲图像
// To create a buffered image, see e666 创建缓冲图像 // Flip the image vertically AffineTransform tx = AffineTransform.getScaleInstance(1, -1); tx.translate... ...
分类:其他好文   时间:2018-09-02 23:47:59    阅读次数:214
e662. 取的图像的色彩模型
// This method returns the color model of an image public static ColorModel getColorModel(Image image) { // If buffered image, the color model is read... ...
分类:其他好文   时间:2018-09-02 23:41:25    阅读次数:167
e666. 创建缓冲图像
A buffered image is a type of image whose pixels can be modified. For example, you can draw on a buffered image and then draw the resulting buffered i ...
分类:其他好文   时间:2018-09-02 23:38:03    阅读次数:143
IO流之缓冲流
缓冲流 Java中提高了一套缓冲流,它的存在,可提高IO流的读写速度 缓冲流,根据流的分类字节缓冲流与字符缓冲流。 字节缓冲流 字节缓冲流根据流的方向,共有2个 l 写入数据到流中,字节缓冲输出流 BufferedOutputStream l 读取流中的数据,字节缓冲输入流 BufferedInpu ...
分类:其他好文   时间:2018-08-27 12:40:50    阅读次数:185
java基础增强:统计网上app下载情况,并排序
一入编程深似海,从此妹子是路人。 案例: 统计网站app下载的情况,后台数据如下: 日期,用户名,app名,下载渠道,所在城市,app版本 2017-08-15,xx老师,陌陌,app store,上海,v2.9 2017-08-15,xx老师,脉脉,jdk1.8,上海,v2.3 2017-08-1 ...
分类:移动开发   时间:2018-08-25 16:26:41    阅读次数:356
设计模式---单一职责模式之装饰模式(Decorator)
前提:"单一职责"模式 典型模式(表现最为突出) 一:装饰模式 (一)概念 (二)动机 (三)原代码讲解(流操作) 出现的问题: 问题的原因 (四)改进版本一(组合代替继承) 运行时装配: 另外注意: (五)改进版本二(使用装饰模式<中间基类>) 全部代码 (六)模式定义 (七)类图(结构) (八) ...
分类:其他好文   时间:2018-08-25 14:03:52    阅读次数:153
2018-08-22字节字符转换流InputStreamReader+OutputStreamWriter+缓冲流Buffered+newLine换行方法
OutputStreamWriter类: 查阅OutputStreamWriter的API介绍,OutputStreamWriter 是字符流通向字节流的桥梁:可使用指定的字符编码表(一般是GBK和UTF-8),将要写入流中的字符编码成字节!它的作用的就是,将字符串按照指定的编码表转成字节,在使用字 ...
分类:其他好文   时间:2018-08-23 13:00:06    阅读次数:195
JavaSE 第二次学习随笔(四)
Java多线程交互, 流, 字节流 字符流 printStream printWriter 缓存Buffered流 标准输入输出流 流的转换 ...
分类:编程语言   时间:2018-08-20 21:45:42    阅读次数:165
344条   上一页 1 ... 16 17 18 19 20 ... 35 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!