GAMMD rev.3

気ままにメモ

2014-05-18から1日間の記事一覧

ftpのコマンドに関する備忘録

ftp {hostname} #ftp -s:{cmdFile} {hostname}>lcd c:/tmp/ >cd /files/>binary >mget ${downloadFiles}*>bye 余談FTPでAS400に接続した場合にbinaryモードでないとftpが無限ループする・・? → WRKACTJOB>無理矢理終了SAVFをローカルにダウンロードしたい場…

JavaでGifアニメーション

public static BufferedImage buffer; int width = 100; int height = 12; int MAX_PAGE = 12; private void execute() { Iterator it = ImageIO.getImageWritersByFormatName("gif"); ImageWriter iw = it.hasNext() ? (ImageWriter) it.next() : null; Fil…

JavaでPNG画像作成

private int x = 100; private int y = 12;private void execute(String string) throws IOException { BufferedImage im = new BufferedImage(x, y, BufferedImage.TYPE_INT_ARGB); Graphics g = im.getGraphics(); g.setColor(Color.white); g.fillRect(0,…