码迷,mamicode.com
首页 >  
搜索关键字:wstring    ( 179个结果
python 栈和队列
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生成一张图片这是使用java的GUI编程的知识,使用他来动态生成一个图片的流,然后发送到客户端就可以 了,代码 如下 后端的:、 前台使用 ...
分类:编程语言   时间:2017-10-25 00:38:45    阅读次数:235
MFC常用的简单代码
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
c#验证码
using System; using System.Drawing; using System.Windows.Forms; namespace aaaa { public partial class Form1 : Form { public Form1() { InitializeCompon... ...
分类:Windows程序   时间:2017-10-03 13:10:27    阅读次数:191
对std::string和std::wstring区别的解释,807个赞同,有例子
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
自己封装的一个java图片验证码
验证码生成器: 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
VB.net打印指定文件-(目前是打印文件名)
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
C#添加水印
public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { ImgWater img = new ImgWater(); bool f = im ...
分类:Windows程序   时间:2017-08-08 23:08:12    阅读次数:328
179条   上一页 1 ... 5 6 7 8 9 ... 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!