静态生成html的原理

虽然在性能上讲,即使将JSP或ACTION转换成HTML文件还是不如将某张JSP或某个ACTION缓存起来再作应响这种策略。但是,对大型的系统,JSP页面和ACTION可能成千上万,页每张JSP或每个ACTION反回的数据大概有几K左右。当然,我们只是缓存访问最频繁的页面,即使最繁的页面也可能有很多,所以也不能全部缓存。再说,缓存起来的数据也要定时更新,如果多了,定时更新也存在一定的问题,这就是为什么要静态HTML的理由了。
废话就不多说了,下面我们讨论一下如何将JSP或ACTION转换成HTML。其实这是一个非常简单的过程,你只要理解response对象的作用和知道如何正确编码就可以了。大家都知道,JSP在执行前是先被转译成Java文件,再编译成class文件再服务的。在每个JSP实例都有个service方法,而这个service方法将动态数据解释成以html标记的内容,然后再用response的writer对象将一段一段地内容写向服务器,完毕后刷新writer对象和关闭它,最后客户端所得到的就是html内容了。
既然是这样,如果在客户访某个JSP或ACTION前,我们先在服务端访问它,然后将得到的内容存到一个字节数组中,当客户端要访问我们在服务端已经访问过的ACTION或JSP时,我们直接用response的OutputStream将储存这个页面或ACTIONR的字节数组输出到客户端。这不就是避勉当每一次请求那个action或jsp都要执行一次吗?如果这样是可行的话,那么剩下的就是如何在服务端虚构一个客户来访问要缓存一页面了。
在虚构客户这方面,最直接的做法就是用一个SERVLET,在SERVLET的doPost或doGet方法中要实现:一、可以请求某个JSP或ACTION。二、在请求之后能获取一个InputStream。三、这个InputStream所读取的数据能保存到特定的地方。
要实现doPost或doGet方法中的三个方面的要求有很多做法,但都基于读取服务器响应的数据。有种比较麻烦的实现是:
1.创建一个OutputStream。
2.用这个OutputStream来创建一个ServletOutputStream。
3.用这个OutputStream创建一个OutputStreamWriter。
4.用这个OuputStreamWriter创建一个PrintWriter。
5.用上面创建的ServletOutputStream和PrintWriter和response对象来新建一个HttpSerlvetResponse对象。
6.用request对象在指定的URL上获取一个RequestDispatcher对象。
7.用这个RequestDispatcher对象的include(req,res)方法,将请求的数据转到request和刚才新建一那个response对象上。
8.最后调用PrintWriter的close和OuputStream的close。
经过上面一系列的处理,服务端响应的数据将写到特定的OutputStream上了。下面是代码:
String fileForOuput = “C://xxx.html”; 
FileOutputStream os = new FileOutputStream(fileForOuput); 
final ServletOutputStream stream = new ServletOutputStream() 
{ public void write(byte[] data, int offset, int length) { try { os.write(data, offset, length); } catch (IOException e) { e.printStackTrace(); } } public void write(int b) throws IOException { os.write(b); } 
}; 
final PrintWriter pw = new PrintWriter(new OutputStreamWriter(os)); 
HttpServletResponse rep = new HttpServletResponseWrapper(response) 
{ public ServletOutputStream getOutputStream() { return stream; } public PrintWriter getWriter() { return pw; } 
}; 
String url = http://localhost:port/page; 
RequestDispatcher rd = request.getRequestDispatcher(url); 
rd.include(request, rep); 
pw.flush(); 
pw.close(); 
os.close(); 
这种方法是可行的,但比较罗索,代码比较长,URL和URLConnection为我们封装了上面的几步,我们只要从它那里直接获取InputStream以相应的编码格式读取服务器响应的html内容,再保存就可以了。
如果真的要生成HTML的话,也不能“一劳永逸”式地实现,因为JSP和ACTION都是态动的,在不同时该所生成的内容可能不同,这就要一个底级线程定期实现上面的操作和注销缓存或删除旧的html文件以达到更新目的。
---------------------------------------------
方法:
第一步,加入servlet.代码如下。
import java.io.ByteArrayOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpServletResponseWrapper;
/**
* Title: PageToHtml
* Description:JspToHtml Servlet
*
@author dark
*
@version 1.0
* @Date Nov 04, 2010
*/
publicclass ToHtml extends HttpServlet {
privatestaticfinallong serialVersionUID =1L;

/**
* Default constructor.
*/
public ToHtml() {
// TODO Auto-generated constructor stub
}

/**
*
*/
publicvoid service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String url
="";
String name
="";
ServletContext sc
= getServletContext();
//你要访问的jsp文件名,如index,不包括扩展名//则你访问这个servlet是加参数,如http://localhost/test/toHtml?file_name=index
String file_name = request.getParameter("file_name");
//你要生成的也没的文件名
url ="/"+ file_name +".jsp";
// 这是生成的html文件名,如index.htm.文件名字与源文件名相同。扩展名为htm
name ="F:\\work\\eclipse\\PageToHtml\\WebContent"+"\\"+ file_name +".html";
RequestDispatcher rd
= sc.getRequestDispatcher(url);
final ByteArrayOutputStream os =new ByteArrayOutputStream();

final ServletOutputStream stream =new ServletOutputStream() {
publicvoid write(byte[] data,int offset, int length){
os.write(data, offset, length);
}
@Override
publicvoid write(int b) throws IOException {
os.write(b);
}
};

final PrintWriter pw =new PrintWriter(new OutputStreamWriter(os));
HttpServletResponse rep
=new HttpServletResponseWrapper(response){
public ServletOutputStream getOutputStream(){
return stream;
}

public PrintWriter getWriter(){
return pw;
}

};

rd.include(request, rep);
pw.flush();
FileOutputStream fos
=new FileOutputStream(name);//把jsp输出的内容写到xxx.html
os.writeTo(fos);
fos.close();
PrintWriter out
= response.getWriter();
out.print(
"<p align=center><font size=3 color=red>页面已经成功生成!single<br>http://www.agilejava.org/space/? 233</font></p>");





}


/**
*
@see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protectedvoid doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
}

/**
*
@see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protectedvoid doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
}

}
第二步、配置你的web.xml


<servlet>
<description>
</description>
<display-name>ToHtml</display-name>
<servlet-name>ToHtml</servlet-name>
<servlet-class>
com.dark.tohtml.ToHtml
</servlet-class>
</servlet>
<servlet>
<description>
</description>
<display-name>ServletContext</display-name>
<servlet-name>ServletContext</servlet-name>
<servlet-class>
com.dark.tohtml.ServletContext
</servlet-class>
</servlet>
第三步、运行servlet。如:http://localhost:8080/test/toHtml?file_name=index 
 OK,这就在你的test项目的根目录下,生成了一个index.htm的静态文件。  
局限性:本文只能生成一个文件!访问一次,生成一个文件。并且生成的文件名也与原来的文件名相同。 
比较适合主页生成静态页面。 
本系列的后续文章将解决更多的问题。使之在新闻发布系统中,很容易就集成应用。
生成静态页面技术解决方案之二
在上一篇文章中,生成静态页面,是有一定的局限性的。生成主页是很方便,但要生成二级页面,就不方便了。 
    本文假设一个新闻发布系统。希望后台发布的,前台显示的是静态的文档。这就涉及,主页要是静态的,同时二级列表也是静态的,新闻内容也是静态的。也就是说, 在发布一篇新闻的时候,可能涉及到三个地方生成静态文档。并且,要生成一个网页,必须访问一个servlet。在大量生成静态网页的时候, 
    以下方法,可以解决这些问题。 
    一、加入一下servelet
/**
* @file_name 文件名及文件之后的参数.最好为a.jsf?fileId=aaaa
* @path 文件所在的路径.相对于根目录而言的.
* @realName文件要保存的名字
* @realPath文件要保存的真实路径。默认与文件所在的目录相同。
*/
publicclass ToHtmlPath extends HttpServlet {

publicvoid service(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String url
="";
String name
="";

ServletContext sc
= getServletContext();

String file_name
= request.getParameter("file_name");// 你要访问的jsp文件,如news.jsf。
// file_name如:fileDetail.jsf?fileId=56.要是有参数, 只有一个参数。并且以参数名作为文件名。
String realName = request.getParameter("realName");// 要保存的文件名。如aaa;注意可以没有这个参数。

String path
= request.getParameter("path");// 你要访问的jsp文件路径。如news。注意可以没有这个参数。

String realPath
= request.getParameter("realPath");// 你要保存的文件路径,如htmlNews.注意可以没有这个参数。
// 下面确定要保存的文件名字。
if (realName ==null|| realName =="") {
int a =0;
a
= file_name.indexOf("=") +1;
realName
= file_name.substring(a);
if (realName.indexOf(".")>0) {
realName
= file_name.substring(0, file_name.indexOf("."));
}
}
// 下面构造要访问的页面。
if (path ==null|| path =="") {
url
="/"+ file_name;// 这是你要生成HTML的jsp文件,如
} else {
url
="/"+ path +"/"+ file_name;// 这是你要生成HTML的jsp文件,如
}
// 下面构造要保存的文件名,及路径。
// 1、如果有realPath,则保存在realPath下。
// 2、如果有path则保存在path下。
// 3、否则,保存在根目录下。
if (realPath ==null|| realPath =="") {
if (path ==null|| path =="") {
name
= ConfConstants.CONTEXT_PATH +"\\"+ realName +".htm";// 这是生成的html文件名,如index.htm.说明: ConfConstants.CONTEXT_PATH为你的上下文路径。
} else {
name
= ConfConstants.CONTEXT_PATH +"\\"+ path +"\\"
+ realName +".htm";// 这是生成的html文件名,如index.htm.
}
}
else {
name
= ConfConstants.CONTEXT_PATH +"\\"+ realPath +"\\"
+ realName +".htm";// 这是生成的html文件名,如index.htm.
}

// 访问请求的页面,并生成指定的文件。
RequestDispatcher rd = sc.getRequestDispatcher(url);

final ByteArrayOutputStream ōs =new ByteArrayOutputStream();

final ServletOutputStream stream =new ServletOutputStream() {
publicvoid write(byte[] data, int offset, int length) {
os.write(data, offset, length);
}

publicvoid write(int b) throws IOException {
os.write(b);
}
};

final PrintWriter pw =new PrintWriter(new OutputStreamWriter(os));

HttpServletResponse rep
=new HttpServletResponseWrapper(response) {
public ServletOutputStream getOutputStream() {
return stream;
}

public PrintWriter getWriter() {
return pw;
}
};
rd.include(request, rep);
pw.flush();
FileOutputStream fos
=new FileOutputStream(name); // 把jsp输出的内容写到xxx.htm
os.writeTo(fos);
fos.close();
PrintWriter ōut
= response.getWriter();
out.print(
"<p align=center><font size=3 color=red>success!</font></p>");
}
}


二、在web.xml里面配置你的servlet

<servlet>
<servlet-name>toHtmlPath</servlet-name>
<servlet-class>mj.util.html.ToHtmlPath</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>toHtmlPath</servlet-name>
<url-pattern>/toHtmlPath</url-pattern>
</servlet-mapping>
三、写一个通用的方法, 供调用。
publicclass CallHtml {

publicstaticvoid callOnePage(String fileName, String path,
String realName, String realPath) {
try {
String str
="http://localhost:8080/test/toHtmlPath?file_name="
+ fileName +"&&path="+ path +"&&realName="+ realName
+"&&realPath="+ realPath;
int httpResult;
URL url
=new URL(str);
URLConnection connection
= url.openConnection();
connection.connect();
HttpURLConnection httpURLConnection
= (HttpURLConnection) connection;
httpResult
= httpURLConnection.getResponseCode();
if (httpResult != HttpURLConnection.HTTP_OK) {
System.out.println(
"没有连接成功");
}
else {
System.out.println(
"连接成功了 ");
}
}
catch (Exception e) {
// TODO: handle exception
}
}

//这个方法适当重载,就可以省去一些参数传递。

}

 四、在你的新闻发布save时,调用方法。

          1、CallHtml.callOnePage("info.jsf?file_id=aaa",news,"", "");//将在news目录下生成一个aaa.htm的静态文件

          2、CallHtml.callOnePage("newsList.jsf",news,"", "");//将在news目录下生成一个newsList.htm的静态文件,显示最新的新闻。

          3、CallHtml.callOnePage("index.jsf","","", "");//生成主页。

          好了,这就保持了,主页、列表、新闻内容都是最新的静态页面了。


----------------------------------------------------------------------------------------------------
一个实现将动态页面转为静态的方案

1.前言
为了能深入浅出的理解这个框架的由来,我们首先来了解一下JSP解析器将我们写的JSP代码转换成的JAVA文件的内容。
下面是一个JSP文件test.jsp
经过TOMCAT转换出的JAVA文件test$jsp.java内容如下:

package org.apache.jsp;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import org.apache.jasper.runtime.*;

publicclass test$jsp extends HttpJspBase {

static {
}
public testOutRedir$jsp( ) {
}

privatestaticboolean _jspx_inited =false;

publicfinalvoid _jspx_init() throws org.apache.jasper.runtime.JspException {
}

publicvoid _jspService(HttpServletRequest request, HttpServletResponse response)
throws java.io.IOException, ServletException {

JspFactory _jspxFactory
=null;
PageContext pageContext
=null;
HttpSession session
=null;
ServletContext application
=null;
ServletConfig config
=null;
JspWriter out
=null;
Object page
=this;
String _value
=null;
try {

if (_jspx_inited ==false) {
synchronized (this) {
if (_jspx_inited ==false) {
_jspx_init();
_jspx_inited
=true;
}
}
}
_jspxFactory
= JspFactory.getDefaultFactory();
response.setContentType(text
/html;charset=GB2312);
pageContext
= _jspxFactory.getPageContext(this, request, response,
,
true, 8192, true);

application
= pageContext.getServletContext();
config
= pageContext.getServletConfig();
session
= pageContext.getSession();
out
= pageContext.getOut();
//为了节省篇幅,我删除了解释器添加的注释
out.write(\r\n);
//上一句是由于后面的换行产生的
out.write();
out.write(\r\n\r\n\r\n\r\n);
out.print( 输出 );
out.write(\r\n\r\n\r\n\r\n);
}
catch (Throwable t) {
if (out !=null&& out.getBufferSize() !=0)
out.clearBuffer();
if (pageContext !=null) pageContext.handlePageException(t);
}
finally {
if (_jspxFactory !=null) _jspxFactory.releasePageContext(pageContext);
}
}
}

从上面的代码中可以清晰的看到JSP内建的几个对象(out、request、response、session、pageContext、application、config、page)是怎么产生的,懂servlet的朋友一看就能明白。
下面重点理解一下out对象,它被声明为JspWriter类型,JspWriter是一个抽象类,在包javax.servlet.jsp中可以找到它的定义。

abstractpublicclass javax.servlet.jsp.JspWriter extends java.io.Writer{
finalpublicstaticint NO_BUFFER =0;
finalpublicstaticint DEFAULT_BUFFER =-1;
finalpublicstaticint UNBOUNDED_BUFFER =-2;
protectedint bufferSize;
protected Boolean autoFlush;
protected javax.servlet.jsp.JspWriter(int arg1, boolean arg2);

abstractpublicvoid newLine() throws IOException ;
abstractpublicvoid print(boolean arg0) throws IOException ;
abstractpublicvoid print(char arg0) throws IOException ;
abstractpublicvoid print(int arg0) throws IOException ;
abstractpublicvoid print(long arg0) throws IOException ;
abstractpublicvoid print(float arg0) throws IOException ;
abstractpublicvoid print(double arg0) throws IOException ;
abstractpublicvoid print(char[] arg0) throws IOException ;
abstractpublicvoid print(String arg0) throws IOException ;
abstractpublicvoid print(Object arg0) throws IOException ;
abstractpublicvoid println() throws IOException ;
abstractpublicvoid println(boolean arg0) throws IOException ;
abstractpublicvoid println(char arg0) throws IOException ;
abstractpublicvoid println(int arg0) throws IOException ;
abstractpublicvoid println(long arg0) throws IOException ;
abstractpublicvoid println(float arg0) throws IOException ;
abstractpublicvoid println(double arg0) throws IOException ;
abstractpublicvoid println(char[] arg0) throws IOException ;
abstractpublicvoid println(String arg0) throws IOException ;
abtract
publicvoid println(Object arg0) throws IOException ;
abstractpublicvoid clear() throws IOException ;
abstractpublicvoid clearBuffer() throws IOException ;
abstractpublicvoid flush() throws IOException ;
abstractpublicvoid close() throws IOException ;
publicint getBufferSize() ;
abstractpublicint getRemaining() ;
publicboolean isAutoFlush() ;
}

我相信当我写到这里你可能已经知道我想怎么做了。是的,来个偷天换日,继承JspWriter类,然后实现其定义的虚函数,然后把out变量替换成你自己实现的类的实例就ok了。
2.实现替换
假设
3.更新问题
下面就讨论一下如何更新生成静态文件,其实从上面实现中你可以看到,很简单的就是将生成的静态文件删除即可,至于什么时候删除,要看你的需求了。我能想到的几种情况如下
当用来生成页面的数据更新时
如果不需要很提供时时的数据可以定时更新
永远不更新
----------------------------------------------------------------------------------------------------

JSP生成静态HTML页面范例

先建立一个模本页面:template.htm

<Html>
<head>
<title>###title###</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="../Css.css" rel=stylesheet type=text/css>
</head>
<body>
<table width="500" border="0" align="center" cellpadding="0" cellspacing="2">
<tr>
<td align="center">###title###</td>
</tr>
<tr>
<td align="center">作者:###author###&nbsp;&nbsp;</td>
</tr>
<tr>
<td>###content###
</td>
</tr>
</table>
</body>
</html>

=========================================
再写一个jsp页面: buildhtml.jsp

<%@ page contentType="text/html; charset=gb2312" import="Java.util.*,java.io.*"%> 
<% 
try{ 
String title="jsp生成静态html文件"; 
String content="小样,还搞不定你?"; 
String editer="webjxcom"; 
String filePath = ""; 
filePath = request.getRealPath("/")+"template.htm"; 
out.print(filePath); 
String templateContent=""; 
FileInputStream fileinputstream = new FileInputStream(filePath);//读取模块文件 
int lenght = fileinputstream.available(); 
byte bytes[] = new byte[lenght]; 
fileinputstream.read(bytes); 
fileinputstream.close(); 
templateContent = new String(bytes); 
out.print(templateContent); 
templateContent=templateContent.replaceAll("###title###",title); 
templateContent=templateContent.replaceAll("###content###",content); 
templateContent=templateContent.replaceAll("###author###",editer);//替换掉模块中相应的地方 
out.print(templateContent); 
// 根据时间得文件名 
Calendar calendar = Calendar.getInstance(); 
String fileame = String.valueOf(calendar.getTimeInMillis()) +".html"; 
fileame = request.getRealPath("/")+fileame;//生成的html文件保存路径 
FileOutputStream fileoutputstream = new FileOutputStream(fileame);//建立文件输出流 
out.print("文件输出路径:<br>"); 
out.print(fileame); 
byte tag_bytes[] = templateContent.getBytes(); 
fileoutputstream.write(tag_bytes); 
fileoutputstream.close(); 
} 
catch(Exception e){ 
out.print(e.toString()); 
} 
%> 


---------------------------------------------------------------------------

mport java.io.*;

import java.net.*;



publicclass Tools {

finalstatic Object lock =new Object();

publicstaticvoid makeHtml(String page, String filePath)...{

makeHtml(page,filePath,
"UTF-8");

}



publicstaticvoid makeHtml(String page, String filePath,String chartset) {

synchronized (lock) {

HttpURLConnection huc
=null;

BufferedReader br
=null;

BufferedWriter bw
=null;

try {

huc
= (HttpURLConnection)new URL(page).openConnection();

System.setProperty(
"sun.net.client.defaultConnectTimeout", "30000");

System.setProperty(
"sun.net.client.defaultReadTimeout", "30000");

huc.connect();

InputStream stream
= huc.getInputStream();

bw
=new BufferedWriter(new OutputStreamWriter (new FileOutputStream(filePath),chartset));

br
=new BufferedReader(new InputStreamReader(stream, chartset));

String line;

while((line = br.readLine())!=null){

if(line.trim().length() >0){

bw.write(line);

bw.newLine();

}

}

}
catch (Exception e) {

e.printStackTrace();

}
finally {

try {

br.close();

bw.close();

huc.disconnect();

}
catch (Exception e) {

e.printStackTrace();

}

}

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/548975.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

centos利用nexus搭建局域网docker私有仓库

centos利用nexus搭建局域网docker私有仓库 1、官网下载nexus oss版本 https://sonatype-download.global.ssl.fastly.net/repository/downloads-prod-group/3/nexus-3.29.2-02-unix.tar.gz [rootlocalhost bin]# wget https://sonatype-download.global.ssl.fastly.net/repo…

整合apache和JBoss,配置虚拟主机

大致步骤&#xff1a;一、安装apache 二、安装JDK&#xff0c;作为JBOSS的运行环境三、安装JBOSS四、安装及配置mod_jk&#xff0c;用以apache和JBOSS之间的通信五、配置虚拟主机&#xff0c;把动态资源交给JBOSS处理安装apache&#xff1a;1、 安装&#xff1a;yum2、 配置&am…

Max retries exceeded with URL报错小记

from hyp mistake: 循环post请求第二遍报错 Max retries exceeded with URL for i in fac:url******payload ********req requests.request("POST", url, datapayload, headersheaders, timeout3)*******网上查询的方法 1、增加重试连接次数&#xff1a; reque…

History变量

History有三个变量如下&#xff1a; HISTFILE 变量&#xff0c;申请文件路经 [rootskyxue ~]# echo $HISTFILE /root/.bash_history HISTSIZE、 HISTFILESIZE变量设置记录个数转载于:https://blog.51cto.com/skyson/537938

centos离线部署gitlab

centos离线部署gitlab 有的时候因为工作环境需要&#xff0c;不能够连接互联网。而我们工作时又需要使用git进行合作开发&#xff0c;这时就需要在内网部署一个git服务端。 1、下载依赖软件包 yum install --downloadonly --downloaddir/opt/repo curl policycoreutils-pyth…

centos离线安装jenkins

centos离线安装jenkins 1、安装java环境&#xff0c;这里我们选择openjdk&#xff0c;当然也可以是JDK [rootlocalhost repo]# yum install -y java2、下载jenkins的yum源的配置文件jenkins.repo [rootlocalhost repo]# wget -O /etc/yum.repos.d/jenkins.repo http://pkg.j…

django开发环境搭建

django开发环境搭建 1、下载所需要的安装包 pycharm python3.7.9 2、安装pycharm python环境 3、Windows 安装mkvirtualenv虚拟python环境 pip install virtualenvwrapper-win4、下载必要的安装包&#xff08;只下载不安装&#xff09; pip download -d \home\packs virtu…

Revit二次开发 - C#程序员的佳好选择

虽然Revit的使用者和开发目前在中国都很少&#xff0c;但是这是个趋势。未来Revit会在许多方面取代Autocad做CAD二次开发的&#xff0c;在中国也很吃香。但是使用C难倒了许多人。而Revit二次开发可以使用C#并且上手非常容易。假如你是一个C#程序员&#xff0c;正在确定自己未来…

Java递归例子——求x的y幂次方

假设n的值大于0。 一&#xff1a;源程序&#xff1a; View Code packageone;publicclassRecursionTest {/*** paramargs*/publicstaticvoidmain(String[] args) {//TODO Auto-generated method stubRecursionTest rt newRecursionTest();intx 6;inty 2;longresult rt.getPower…

Windows 7运行命令大全

dcomcnfg 组件服务 comexp.msc 组件服务 WF.msc 防火墙&#xff08;高级设置&#xff09; Stikynot 便笺 diskmgmt.msc 磁盘管理 devmgmt.msc 设备管理器 Secpol.msc 本地安全策略 services.msc 服务 compmgmt.msc 计算机服务 fsmgmt.msc 共享文件夹管理器 msinfo32.exe 系统信…

python学习之最常用的内置函数

python学习之最常用的内置函数 Python 内置函数总共有70余个&#xff08;通常把内置类也统称为内置函数&#xff09;&#xff0c;覆盖面广&#xff0c;功能强大。不过&#xff0c;对于初学者在初级阶段&#xff0c;掌握下面几个函数是当务之急。 (1) 控制台输出函数 print() …

Android应用开发控件——Gallery和ImageSwitcher

Gallery组件主要用于横向显示图像列表&#xff0c;不过按常规做法。Gallery组件只能有限地显示指定的图像。也就是说&#xff0c;如果为Gallery组件指定了10张图像&#xff0c;那么当Gallery组件显示到第10张时&#xff0c;就不会再继续显示了。这虽然在大多数时候没有什么关系…

Windows7搭建FTP文件

Windows7搭建FTP文件 第一步&#xff1a;在任意一盘创建一个共享文件夹&#xff0c;这里我们把它命名为“ftp文件共享”&#xff0c;把需要共享的文件放里面&#xff0c;如图所示 第二步&#xff1a;安装IS组件 开始菜单→控制面板→程序→程序和功能→打开或关闭Windows功能…

nagios整合cacti2011版(五)

Nagios使用NSClient监控远程Windows主机下载NSClient-Win32-0.3.8.msi并安装。http://files.nsclient.org/x-0.3.x/NSClient-0.3.8-Win32.msi到安装目录打开NSC.ini文件进行修改&#xff1a;在[modules]模块&#xff0c;将除CheckWMI.dll和RemoteConfiguration.dll外的所有dll文…

Win7搭建http文件共享

Win7搭建http文件共享 作者&#xff1a;莫咸海 第一步&#xff1a;在除C盘以外的盘符中新建一个共享文件夹&#xff0c;命名为“http文件共享”&#xff1b; 将需要共享的文件放在“http文件共享”文件夹中。 第二步&#xff1a;安装IIS组件。开始菜单->控制面板->程序…

大数运算(续)

ACM竞赛中另一个基础运算&#xff0c;大数的阶乘(factorial)&#xff0c;其实阶乘中要算超出int表示范围的阶乘这是个十分浩瀚的工程&#xff0c;其实就是很多个大数先乎乘积再求和。 真不敢想象一个位数超过百位的数字&#xff0c;它的阶乘&#xff0c;这个目前不考率&#xf…

Visualbox中linux的网络配置

在visualbox中刚装好虚拟机后&#xff0c;默认没有配置eth0&#xff0c;所以用putty工具无法连接上虚拟机中的系统。 配置eth0的方法如下&#xff1a; 用vim打开eth0的配置文件&#xff1a;/etc/sysconfig/network-scripts/ifcfg-eth0 将以下内容拷入此配置文件中 DEVICE"…

以命令方式从ftp服务器上下载和上传文件

** 以命令方式从ftp服务器上下载和上传文件 wang ** 1、“开始”→“运行”&#xff0c;输入“cmd“&#xff0c;打开命令提示符&#xff1b; 2、在命令提示符内输入”ftp“并回车&#xff0c;进入ftp提示符ftp> 3、在ftp>输入 open 192.168.2.5 回车&#xff1b; 如…

使用Html.DropDownList

在MVC项目中&#xff0c;需要使用DropDownList绑定Model数据。 目前使用的方法&#xff1a; 先定义SelectListItem的list类型 <%var VisitCaselist newList<SelectListItem>() { (newSelectListItem() { Text "空", Value "空", Selectedtrue}),…