`
文章列表
Django中使用logging模块 在web应用中记录页面访问情况,在jsp里有filter, 在Django里有middleware。 下面的例子就是在中间件里记录页面访问情况。   settings.py   # Django settings for testsite project. import logging DEBUG = True # DEBUG = False TEMPLATE_DEBUG = DEBUG ADMINS = ( # ('Your Name', 'your_email@domain.com'), ) MANAGE ...
/** * AsianTest.java */ import java.io.FileOutputStream; import java.io.IOException; import com.lowagie.text.*; import com.lowagie.text.pdf.PdfWriter; import com.lowagie.text.pdf.BaseFont; import com.lowagie.text.Font; import java.awt.Color; public class AsianTest { public stati ...
#!/usr/bin/env python #coding=utf-8 from reportlab.pdfgen import canvas c = canvas.Canvas("hello.pdf") from reportlab.lib.units import inch # move the origin up and to the left c.translate(inch,inch) # define a large font c.setFont("Helvetica", 80) # choose some co ...
#!/usr/bin/env python #coding=utf-8 from pyPdf import PdfFileWriter, PdfFileReader output = PdfFileWriter() input1 = PdfFileReader(file("c://1.pdf", "rb")) # print the title of document1.pdf print "title = %s" % (input1.getDocumentInfo().title) # add page ...
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.SqlClient; namespace SqlServerTest { class Program { static void Main(string[] args) { string strDataBase = "Server=.;DataBase=Test;Uid=sa;pwd= ...
应用中设想用C#生成PDF文件。主要可以生成文本和图片。 下载iTextSharp.dll,引用。并运行下面示例。引自互联网资源,略作调整。     using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Collections; // using iTextSharp; using iTextSharp.text; using iTextSharp.text.pdf; namespace PDFGenerator { ...
以前提到Flex建立Socket的时候要收发一套安全内容,当时是根据安全内容,用Python模拟Flex,与Java
今天胡老师询问是否可以在java中读取配置文件,并询问了java操纵数据库的情况。我都给出了肯定的回答。晚上上不了迅雷看看,随手从以前的代码中按照胡老师的需要抽取了一部分,装配成型。主要用到的Spring的ioc,jdbctmplate
继续上篇关于Django的日志,探索Django的其他方面。 首先想到的是Django里面有没有类似filter
这个例子运用了django以下一些方面: 1.       转向 2.      

Flex登录

  Flex登录,判断用户名密码正确之后应该有一个转向动作。项目采用过两种写法。   第一种,   <!----> <mx:states> <mx:State name="tabs"> <mx:RemoveChild target="{can}"/> <mx:AddChild> <mx:VBox width="100%" height="100%"> <mx:SWFLoader width=" ...
Flex连接Java Server 首先向Server发送了   final static String security_req = "<policy-file-request/>";      继而
ASP.net登录页面。   登录,首先从登录页面的html的控件中得到用户输入的用户名和密码,与数据库中记录比对。如果是合法用户,设置Session,并跳转到默认页面;否则,跳转到注册页面。
Json在Ajax中已得到广泛的应用。相比XML,它有如下的优点:   1. 数据格式比较简单,
首先从http://pypi.python.org/pypi/python-json下载python-json, 然后安装。 解压zip包
Global site tag (gtag.js) - Google Analytics