class Stack: def __init__(self): self.items = [] def isEmpty(self): return self.items == [] def push(self,item): self.items.append(item) def pop(self) ...
分类:
编程语言 时间:
2017-10-31 11:03:31
阅读次数:
266
1 ///创建图像缓冲区 2 BufferedImage bi = new BufferedImage(68, 22, BufferedImage.TYPE_INT_RGB); 3 //通过缓冲区创建一个画布 4 Graphics g = bi.getGraphics(); 5 Color c = ... ...
分类:
其他好文 时间:
2017-10-27 01:49:37
阅读次数:
175
使用java生成验证码的图片的功能 首先声明,本次代码不是本人写的,而是我拷的,因为我自己写出来功能倒是有,但特别丑,所以就不看了, 首先来说下原理 使用java生成一张图片这是使用java的GUI编程的知识,使用他来动态生成一个图片的流,然后发送到客户端就可以 了,代码 如下 后端的:、 前台使用 ...
分类:
编程语言 时间:
2017-10-25 00:38:45
阅读次数:
235
1.选择目录 2.拖拽文件 3.遍历文件夹 ...
分类:
编程语言 时间:
2017-10-11 15:19:59
阅读次数:
249
1 2 3 4 Title 5 12 13 14 15 登录 16 32 39 40 41 42 43 44 45 用户名: 46 "size="15"/> 47 48 49... ...
分类:
其他好文 时间:
2017-10-06 11:31:11
阅读次数:
186
using System; using System.Drawing; using System.Windows.Forms; namespace aaaa { public partial class Form1 : Form { public Form1() { InitializeCompon... ...
807down vote string? wstring? std::string is a basic_string templated on a char, and std::wstring on a wchar_t. char vs. wchar_t char is supposed to h ...
分类:
其他好文 时间:
2017-09-25 17:29:44
阅读次数:
287
验证码生成器: 1 package com.lz.Tools; 2 3 import java.awt.Color; 4 import java.awt.Font; 5 import java.awt.Graphics; 6 import java.awt.Graphics2D; 7 import ...
分类:
编程语言 时间:
2017-09-14 23:47:24
阅读次数:
309
Public Class Form1 Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load OpenFileDialog1.ShowDialog() TextBox1.Te... ...
分类:
Web程序 时间:
2017-09-10 14:20:56
阅读次数:
283
public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { ImgWater img = new ImgWater(); bool f = im ...