admin 管理员组

文章数量: 887021


2023年12月22日发(作者:integrity的意思)

第一章 Java Web应用概述

目前各种主流Web应用程序开发方案:ASP、、Java Web。

即活动服务器页面

是一种基于脚本的解释性程序,其主流脚本是运行于服务器中的JavaScript或VBScript,程序的运行需要有IIS服务器支持。由于服务器平台的限制,这种技术主要应用于Windows平台,不能跨平台开发和部署。

是一种半过程、半对象化得语言环境,ASP程序开发的主流思想还是过程化方式。适合开发一些小型内部管理系统。

也是Microsoft推出的B-S系统开发技术,支持完全的面向对象开发技术。

Web开发技术的优势:

A Java Web开发技术是基于特定标准的,标准的核心是JSP标准和Servlet标准。

B Java Web 技术是构建在开放过程和源码基础上的。(和.NET技术最大的差别)

是由HTML标记、JavaScript脚本、Java构成的服务器端脚本、JSP内置标记构成的一种动态网页设计技术。

t是Java Web开发中最常用的一种程序形式。

an是Java中的组件对象模型,一个JavaBean就是满足JavaBean规范的一个普通Java类。

Filter是Java Web技术对切面编程的支持。

Tomcat安装和配置(P4-6)

第二章 HTML编程技术

Web的三要素:文字、图像、超链接。

HTML语言内容从功能上大体可分为:文本结构及其属性设置、列表建立、超链接、图像和多媒体、表格和表单。

技术提供了实现网页逻辑的脚本,但JSP无法独立控制网页在IE浏览器中的显示效果。

2.网页显示效果的控制需要通过HTML、CSS和JavaScript实现。HTML是控制IE浏览器如何显示的标记语言,CSS则为不同的HTML页面提供样式定义技术,Java Script控制浏览器的动态行为可以为网页增加丰富多彩的动态行为。

是一种标记语言,其中,常用标记按照功能可以分为:图形类、超链接类、表格类、表单类、窗口控制类,以及其他诸如换行,分段等格式控制标记。

文件执行过程:HTML文件通常被存放在Web服务器上,用户通过在浏览器地址栏输入文件对应网址,将网页从服务器提取到客户计算机缓存文件夹中,文件被提取到客户浏览器上后,浏览器解释HTML文件中的程序语句,然后再在浏览器中显示。

、CSS、JavaScript是浏览器应用程序;JSP、Servlet是服务器应用程序。

6.所有标记被分为两大类:头标记和体标记。前者只能出现在HTML文件头部,后者只出现在HTML文件体部。

7.为HTML文件的根标记,内部的头部被标记包括,体部被标记包括。

中:

A 标记:设定IE浏览器的标题。 </p><p style="text-indent: 2em;";>B <meta>标记:刻画网页的描述性信息。<meta>标记只有开始标记没有结束标记,称为孤标记 </p><p style="text-indent: 2em;";>HTML常用标记: </p><p style="text-indent: 2em;";>A HTML图形标记: </p><p style="text-indent: 2em;";><img>标记:网页上显示图片 </p><p style="text-indent: 2em;";>属性:src用于指定图片路径;height和width用于指定图片的长和宽;border用于指定图片1 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>边宽。 </p><p style="text-indent: 2em;";>B HTML超链接 </p><p style="text-indent: 2em;";><a>标记:将不同的网页连成一个有机整体 </p><p style="text-indent: 2em;";>属性:href表示要跳转的目标网页,可以是当前网站上的其他页面,也可是其他网站上的网页;可以使用相对路径,也可使用绝对路径;target用于指定显示目标网页内容的窗口,可取的值是:_blank/_self/_parent/_top/_search。 </p><p style="text-indent: 2em;";>C HTML换行、分段与字体标记 </p><p style="text-indent: 2em;";><br/>标记实现文字换行;<p/>或者<p></p>标记实现文字分段;<font>标记用于指定文字所使用得字体特征,该标记有color、size、face三个属性,分别设置字体的颜色、大小和字体风格。 </p><p style="text-indent: 2em;";>D HTML列表标记 </p><p style="text-indent: 2em;";><OL></OL>实现有序列表;<UL></UL>实现无序列表。 </p><p style="text-indent: 2em;";>E span、div和pre标记 </p><p style="text-indent: 2em;";>Span是行元素,div是块元素,div对应了通常所说“层”的概念。这两种标记的作用在于能够在HTML内容中界定一个特定范围,并通过CSS或JavaScript操作范围中的内容。 </p><p style="text-indent: 2em;";><pre>标记用于将源代码中的排版格式保留输出到浏览器上。 </p><p style="text-indent: 2em;";>HTML中的表格 </p><p style="text-indent: 2em;";>表格在HTML语言中主要有两个作用:数据的展示和内容的布局。前者通常使用具有边框的表格,后者通常使用没有边框的表格。 </p><p style="text-indent: 2em;";>表格常用属性: </p><p style="text-indent: 2em;";>HTML语言中的<table>表格标记<tr>行标记<td>表项标记具备很多属性,其中常用的是background用于设置表格或行的背景图片 bgcolor用于设置表格或行的背景色 valign设置行或单元格的垂直对齐方式(三种取值:top middle botton)align设置行或单元格的水平对齐属性(三种取值:left center right) </p><p style="text-indent: 2em;";>特殊表格的构造: </p><p style="text-indent: 2em;";>HTML语言通过<td>的colspan rowspan属性可以构造不规则表格,前者指定当前单元格横跨的单元格个数,后者指定所跨越的行数。 </p><p style="text-indent: 2em;";>HTML表单 </p><p style="text-indent: 2em;";><form>标记,有一个基本的属性method,取值可是post或者get。 </p><p style="text-indent: 2em;";>HTML窗口切分 </p><p style="text-indent: 2em;";>HTML标记语言为浏览器窗口切分提供了<frameset><frame><iframe>三种标记,<frameset><frame>要配对使用,前者为父标记,后者是子标记;<iframe>独立使用,称为网页上的浮动窗口。如果一个网页对应的浏览器窗口被分成多个子窗口,此种网页称为框架网页。框架网页与普通网页最大的区别在于框架网页不能包含<body>标记;<iframe>只是网页中一个独立的窗口控件,不具备这种限制。 </p><p style="text-indent: 2em;";>第三章 CSS编程技术 </p><p style="text-indent: 2em;";>(层叠式样式表单)主要作用是定义一个HTML标记或一类HTML标记的现实样式,以便实现对于页面样式的独立管理。 </p><p style="text-indent: 2em;";>2.使用CSS为HTML标记定义样式的方法有多种,最长用的是直接定义元素样式,此种方法直接指定某标记的各种样式属性值。 </p><p style="text-indent: 2em;";>样式选择符:组选择符、Class选择符(是独立于标记定义的一种样式,任何标记都可以通过调用而具备该样式)、ID选择符。 </p><p style="text-indent: 2em;";>注:ID侧重于定义一个元素的独有样式;Class侧重于定义一类元素公有的样式。ID定义是要用“#”;Class定义时用“.”。 </p><p style="text-indent: 2em;";>2 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>4.常用的CSS属性按照种类可以分成3部分:文字相关属性;定位相关属性;版式相关属性。 </p><p style="text-indent: 2em;";>文字相关属性: </p><p style="text-indent: 2em;";>①color属性、表示字型的属性font-family、决定字体大小的属性font-size、决定字体粗细的属性font-weight、决定字体风格的属性font-style、决定字体对齐方式的属性text-align、决定字体装饰特色的属性text-decoration、决定字体大小写转换的属性text-transform </p><p style="text-indent: 2em;";>②Display属性决定元素显示版式。它决定了元素内容是“行显示”“段显示”“不显示”,3种取值:None(隐藏)、Inline(行显示)、Block(段显示)。 </p><p style="text-indent: 2em;";>③背景属性设置 </p><p style="text-indent: 2em;";>定位相关属性: </p><p style="text-indent: 2em;";>CSS定位技术分为两种:相对定位和绝对定位。相对定位是使用自身的默认位置加上各个方向的偏移量,以此决定元素的最终位置;绝对定位总是相对于其父元素的左上角,借助元素的偏移量而决定元素的最终位置。Position属性的两种取值:absolute和relative。 </p><p style="text-indent: 2em;";>CSS继承特性 </p><p style="text-indent: 2em;";>唯一不被继承的属性是背景和边框属性。 </p><p style="text-indent: 2em;";>第四章 JavaScript编程技术 </p><p style="text-indent: 2em;";>JavaScript程序结构 </p><p style="text-indent: 2em;";>ript文件可以通过3种途径和HTML文件结合:js独立脚本文件形式、<script>标记块形式、具体的事件属性方式。 </p><p style="text-indent: 2em;";>①独立js脚本文件形式:这种方法将Javascript程序语句保存到一个独立js文件中,通过<script>标记在HTML文件中进行调用。 </p><p style="text-indent: 2em;";><script language=”javaScript” src=””> </p><p style="text-indent: 2em;";><script>标记有两个重要的属性:language和src,前者表示脚本程序使用的语言;后者表示JavaScript脚本文件的路径。 </p><p style="text-indent: 2em;";>②通过<script>标记和HTML结合 </p><p style="text-indent: 2em;";><script>语句块中的JavaScript程序在整个页面中可以被重用。 </p><p style="text-indent: 2em;";>③通过事件属性和HTML结合 </p><p style="text-indent: 2em;";>JavaScript程序语句必须通过<script>标记才能嵌入到HTML程序中,有一种特殊情况,将JavaScript程序语句直接写在HTML标记的事件属性中。 </p><p style="text-indent: 2em;";>JavaScript中的变量 </p><p style="text-indent: 2em;";>所有变量都以var关键字声明,不再区分具体类型。 </p><p style="text-indent: 2em;";>JavaScript中的常用对象 </p><p style="text-indent: 2em;";>Date类(获得当前系统的时间和日期)、Math类(提供了JavaScript中数学算法的基本实现)、String对象(JavaScript中所有字符串默认都是String类的对象) </p><p style="text-indent: 2em;";>网页事件处理 </p><p style="text-indent: 2em;";>所谓事件就是事件发生者向事件处理者传递事件发生现场信息的一种机制。 </p><p style="text-indent: 2em;";>1.标记Click事件 </p><p style="text-indent: 2em;";>ript鼠标事件—主要有onMouseOver,onMouseOut,onMouseMove,前两者是先对与HTML中的特定标记而言的,当鼠标进入该标记范围时,onMouseOver事件触发;当鼠标离开某个标记范围时,onMouseOut事件触发;任何鼠标的移动都会触发onMouseMove事件。 </p><p style="text-indent: 2em;";>3.标记Onchange事件—主要针对于文本框类标记,当文本框中内容发生改变后,Onchange事件就会触发。 </p><p style="text-indent: 2em;";>ript键盘事件 </p><p style="text-indent: 2em;";>JavaScript处理的对象主要有3种:JavaScript内置对象;HTML文档对象;浏览器中的对象。 </p><p style="text-indent: 2em;";>HTML DOM(Doucument Object Modol)文档对象模型的本质在于将HTML文档中的任何 </p><p style="text-indent: 2em;";>3 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>一个标价等价位一个对象,标记属性对应对象成员变量,属性值对应对象状态,标记间的父子关系对应于对象间的父子关系。而整个HTML文档对应document对象,其他所有标记都对应document子对象。 </p><p style="text-indent: 2em;";>浏览器对象模型 </p><p style="text-indent: 2em;";>浏览器对象结构:window(document history location)Window代表浏览器显示窗口,document表示浏览器中加载的HTML文档对象,history是浏览器的浏览历史列表,location对象对应了浏览器的地址栏,通过其可以浏览其他网页。 </p><p style="text-indent: 2em;";>第五章 JSP执行机制与基本语法 </p><p style="text-indent: 2em;";> 5.5虚拟路径配置:首先,建立一个Java Web应用程序: </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> <Context docBase=”C:chapter05” </p><p style="text-indent: 2em;";> Privileged=”true”> </p><p style="text-indent: 2em;";> </Context> </p><p style="text-indent: 2em;";>上面配置文件对应的虚拟路径名称为“ch05”,虚拟路径的名称就是配置文件的名称。将该配置文件添加到Tomcat 5.5的配置文件夹:Tomcat系统/conf/Catalina/localhost下。 </p><p style="text-indent: 2em;";>程序的执行过程:被客户端请求时,一个JSP文件要被转变为Java文件,然后编译成为Class文件,最后被实例化成页面对象,接收客户请求并将处理结果发送给客户端。 </p><p style="text-indent: 2em;";>程序生命周期:初始状态—服务状态—销毁状态。 </p><p style="text-indent: 2em;";>服务状态的JSP页面对象按照提供服务的方式被分为两类:单线程方式和多线程方式。 </p><p style="text-indent: 2em;";>JSP基本语法 </p><p style="text-indent: 2em;";>成员变量和成员方法的声明在<%!和%>之间进行,且只能定义方法和变量。 </p><p style="text-indent: 2em;";>中的脚本通常被<%和%>包括,是普通的Java语句,包括变量的声明、表达式、和程序逻辑。 </p><p style="text-indent: 2em;";>脚本注释:<%--和--%>;由于JSP中的Java脚本是普通的Java语句,所以Java语言所固有的注释语法在这里也可使用(//和/* */) </p><p style="text-indent: 2em;";>内容输出表达式标记:<%=和%> </p><p style="text-indent: 2em;";>包引入语法 </p><p style="text-indent: 2em;";>JSP文件包含机制 </p><p style="text-indent: 2em;";>JSP提供了灵活的文件包含机制:include指令和jsp:include指令,通过这种包含机制可以将不同网页的公共部分保存到一个文件,其他所有JSP页面都调用该文件,因而提高了程序的重用性和可维护性。 </p><p style="text-indent: 2em;";>第六章 JSP连接对象与cookie </p><p style="text-indent: 2em;";>9个JSP内置对象: </p><p style="text-indent: 2em;";>request对象:描述了信息从浏览器提交给服务器的通道,JSP文件中,所有客户信息的接收,都通过该对象完成。 </p><p style="text-indent: 2em;";>response对象:是将JSP响应发送给浏览器的通道,所有JSP对浏览器的输出都通过该对象完成。 </p><p style="text-indent: 2em;";>pageContext对象:对应了JSP文件执行时的环境,通过该环境,JSP文件能够得到所有其他对象。 </p><p style="text-indent: 2em;";>application对象:是一种应用程序级别的集合变量,其成员的生命周期和服务器生命周期相同,是服务器界别的一种全局变量。 </p><p style="text-indent: 2em;";>out对象:向浏览器对象输出字符串。 </p><p style="text-indent: 2em;";>config对象:负责维护中的配置信息。 </p><p style="text-indent: 2em;";>page对象:可以通过其获得JSP页面类的所有成员变量和成员方法。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>4 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>session对象:是一种会话级别的集合变量,当浏览器和服务器开始一次会话时,该对象开始产生,当浏览器关闭,或用户从系统中离开后,将被删除。 </p><p style="text-indent: 2em;";>exception对象:代表页面执行过程中所有异常。 </p><p style="text-indent: 2em;";>cookie对象及应用 </p><p style="text-indent: 2em;";>cookie是存放在客户浏览器中的一种变量,这种变量绑定于特定浏览器,无论哪一个用户保存进去,只要是同一个浏览器,其他的用户也能够读取,适合设计一些关联于浏览器的个性化信息。 </p><p style="text-indent: 2em;";>一个cookie对象是一个key-value数值对,key表示cookie的名字,必须唯一;value是cookie对象中存放的数据,可是任何对象。如:Cookie c=new Cookie(“Name”,str); </p><p style="text-indent: 2em;";>通过response对象将cookie对象设置到客户浏览器上:kie(c); </p><p style="text-indent: 2em;";>第十章 JavaBean组件与JSP内置标记 </p><p style="text-indent: 2em;";>1.按照算法类的位置,JSP调用类被分成两种:内部类与外部类,前者封装具体算法的类,其位于JSP文件中;后者则对应独立的Java文件。 </p><p style="text-indent: 2em;";>调用内部类 </p><p style="text-indent: 2em;";>这种情况下,封装具体逻辑的类以<%!-----%>形式定义,本质上是一个JSP内部类,这种类只能在当前JSP页面中使用。 </p><p style="text-indent: 2em;";>调用外部类 </p><p style="text-indent: 2em;";>所谓外部类就是普通的Java类,这种类可以被JSP页面自由使用,也可以被任何其他系统使用。 </p><p style="text-indent: 2em;";>第一步:将java文件放在Web应用程序当前的路径WEB-INFsrc </p><p style="text-indent: 2em;";>第二步:编译到WEB-INF下classes文件夹中:javac –d ../classes/ *.java </p><p style="text-indent: 2em;";>第三步:将在WEB-INF/classes文件夹下生成class文件 </p><p style="text-indent: 2em;";>an是满足Bean设计规范的普通Java类,这些规范可以分成3部分:一个私有成员变量,一个setXxx方法和一个getXxx方法,Xxx是属性名称。在JavaBean中属性Xxx对应了至少一个方法,如果只有getXxx,就表示该属性是只读属性;如果只有setXxx,则表示该属性是只写属性;如果都具备,为可读可写属性。 </p><p style="text-indent: 2em;";>实例化bean组件的JSP内置标记,语法:<jsp:useBean id=”obj” class=”” </p><p style="text-indent: 2em;";>scope=”page”/> </p><p style="text-indent: 2em;";>an组件的生命周期:从存活范围上由小到大可以分成page<request<session<application4种范围。 </p><p style="text-indent: 2em;";>page范围:当页面开始执行时,组件创立,当页面执行完毕时该组件被销毁。 </p><p style="text-indent: 2em;";>request范围:在整个request请求过程中,该JavaBean组件始终存在。 </p><p style="text-indent: 2em;";>session范围:在整个会话过程中,此JavaBean组件都可用。 </p><p style="text-indent: 2em;";>application范围在整个Web应用程序运行过程中,该JavaBean组件始终存在。 </p><p style="text-indent: 2em;";>第十一章 JSP自定义标记 </p><p style="text-indent: 2em;";>JSP自定义标记的设计步骤:设计标记、实现标记、部署标记、使用标记。 </p><p style="text-indent: 2em;";>JSP自定义标记包括两部分:标记和标记对应的类。 </p><p style="text-indent: 2em;";>标记库的部署 </p><p style="text-indent: 2em;";>WebApp文件夹对应整个JSP应用程序,通常包括所有的静态资源和JSP页面。WEB-INF子文件夹包括JSP应用程序用到的javabean和其他资源。WEB-INF被分割成如下子文件夹:classes文件夹:存放所有Java类文件; </p><p style="text-indent: 2em;";>lib文件夹:存放所有Java jar文件,每个jar文件对应一个类库; </p><p style="text-indent: 2em;";>tlds文件夹:存储JSP自定义的标记库 </p><p style="text-indent: 2em;";>WEB-INF中的则是整个JSP应用程序的配置文件,并进行Servlet、自定义标记等 </p><p style="text-indent: 2em;";>5 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>的资源配置。 </p><p style="text-indent: 2em;";>自定义标记库部署包括两部分:标记类部署和标记库部署。 </p><p style="text-indent: 2em;";>第十二章 JSP操作Oracle数据库 </p><p style="text-indent: 2em;";>数据库操作步骤:1.加载数据库驱动;2.创建connection对象;3.创建statement对象;4.操作数据Resultset;5.关闭 </p><p style="text-indent: 2em;";>JDBC的作用:屏蔽数据库之间的差异,向应用程序提供统一的编程接口。 </p><p style="text-indent: 2em;";>JDBC连接池:预先创建一些链接对象缓存在连接池中,当JSP页面使用数据连接时直接从池中提取连接对象,而不用重新创建;当JSP页面使用完连接后,直接将连接释放到连接池中,以备后用。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>6 </p></div><br><p><h2></h2></p> <!-- 附件 --> <p class="tag"> 本文标签: <a style="margin-right: 10px" href="/tag/579.html" target="_blank">标记</a> <a style="margin-right: 10px" href="/tag/463.html" target="_blank">对象</a> <a style="margin-right: 10px" href="/tag/232.html" target="_blank">属性</a> <a style="margin-right: 10px" href="/tag/299.html" target="_blank">浏览器</a> <a style="margin-right: 10px" href="/tag/175.html" target="_blank">文件</a> </p> <div class="roclinux-cn copyright"> <blockquote> <p> 版权声明:本文标题:Java Web考试复习知识点提纲1 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:<a href="http://www.freenas.com.cn/free/1703210195h442380.html">http://www.freenas.com.cn/free/1703210195h442380.html</a>, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。 </p> </blockquote> </div> </div> <div class="roclinux-cn block-wrap single-relative"> <h2 class="block-title"> 更多相关文章 </h2> <div class="roclinux-cn post-list"> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1732518085h1541653.html" title="Windows 资源保护找到了损坏文件,但其中有一些文件无法修复。对于联机修复,位于 windirLogsCBSCBS.log 的 CBS 日志文件中有详细信息。">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="Windows 资源保护找到了损坏文件,但其中有一些文件无法修复。对于联机修复,位于 windirLogsCBSCBS.log 的 CBS 日志文件中有详细信息。">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1732518085h1541653.html" class="post-item-title" title="Windows 资源保护找到了损坏文件,但其中有一些文件无法修复。对于联机修复,位于 windirLogsCBSCBS.log 的 CBS 日志文件中有详细信息。"> <h3>Windows 资源保护找到了损坏文件,但其中有一些文件无法修复。对于联机修复,位于 windirLogsCBSCBS.log 的 CBS 日志文件中有详细信息。</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">27天前</div> </div> <p class="post-item-summary">该问题是联想壁纸参数的系统错误。 解决办法如下&#xff1a; 1.在CMD中先输入该代码&#xff1a;sfc scannow 2.如果产生如上图问题则再依次输入DISM.exe Online Cleanup-i</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1732618766h1547112.html" title="【浏览器】五大最好用的浏览器 最受欢迎的浏览器软件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="【浏览器】五大最好用的浏览器 最受欢迎的浏览器软件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1732618766h1547112.html" class="post-item-title" title="【浏览器】五大最好用的浏览器 最受欢迎的浏览器软件"> <h3>【浏览器】五大最好用的浏览器 最受欢迎的浏览器软件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">26天前</div> </div> <p class="post-item-summary">人不走空 &#x1f308;个人主页&#xff1a;人不走空       &#x1f496;系列专栏&#xff1a;算法专题 ⏰诗词歌赋&#xff1a;斯是陋室&#xff0c;惟吾德馨 目</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1732772766h1554331.html" title="VMware实现Windows7虚拟机、kali虚拟机和Windows10本机建立指定文件夹共享文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="VMware实现Windows7虚拟机、kali虚拟机和Windows10本机建立指定文件夹共享文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1732772766h1554331.html" class="post-item-title" title="VMware实现Windows7虚拟机、kali虚拟机和Windows10本机建立指定文件夹共享文件"> <h3>VMware实现Windows7虚拟机、kali虚拟机和Windows10本机建立指定文件夹共享文件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">24天前</div> </div> <p class="post-item-summary">1.在Windows10本机中的D盘或E盘中&#xff0c;新建一个文件夹。 这里是在E盘中建立了一个share共享文件夹。 2.打开VMware&#xff0c;启动kali虚拟机后&#xff0c;在上方菜单栏中点</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1732780303h1554742.html" title="Windows自带Dism命令检查和修复系统映像文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="Windows自带Dism命令检查和修复系统映像文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1732780303h1554742.html" class="post-item-title" title="Windows自带Dism命令检查和修复系统映像文件"> <h3>Windows自带Dism命令检查和修复系统映像文件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">24天前</div> </div> <p class="post-item-summary">DISM&#xff1a;是Deployment Imaging and Management&#xff08;部署映像服务和管理&#xff09;的缩写。常使用的命令如下&#xff08;均以管理员方式运行cmd&</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1732782496h1554857.html" title="解决Windows 7 下不能双击打开jar文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="解决Windows 7 下不能双击打开jar文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1732782496h1554857.html" class="post-item-title" title="解决Windows 7 下不能双击打开jar文件"> <h3>解决Windows 7 下不能双击打开jar文件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">24天前</div> </div> <p class="post-item-summary">java打包后的jar文件有两种。 一、单一的jar包,例如在项目中使用的数据库厂商驱动,使用eclipse导入jar包就可以使用包中的类. 二、java打包成可执行的GUI应用程序. 这里要解决的问题就是&#xff1a;Wi</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1733232651h1563806.html" title="在WSL中访问Windows系统的文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="在WSL中访问Windows系统的文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1733232651h1563806.html" class="post-item-title" title="在WSL中访问Windows系统的文件"> <h3>在WSL中访问Windows系统的文件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">19天前</div> </div> <p class="post-item-summary">前言 WSL是Windows Subsystem for Linux的简称。 windows中安装的ubuntu子系统&#xff0c;不知道怎么在ubuntu中访问windows的文件 访问方法 cd mntcXXX</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1733295495h1572439.html" title="windows下域名解析及修改hosts文件不起作用的问题解决">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="windows下域名解析及修改hosts文件不起作用的问题解决">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1733295495h1572439.html" class="post-item-title" title="windows下域名解析及修改hosts文件不起作用的问题解决"> <h3>windows下域名解析及修改hosts文件不起作用的问题解决</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">18天前</div> </div> <p class="post-item-summary">本地搭建了一个服务&#xff0c;想通过域名代替127.0.0.1来访问服务&#xff0c;结果在浏览器上访问&#xff0c;发现怎么都访问不通。采用网上的方法也是不行。 例如将hosts文件保存为ANSI格式</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1733296065h1572505.html" title="SCP命令详解(Linux和windows之间传送文件)">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="SCP命令详解(Linux和windows之间传送文件)">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1733296065h1572505.html" class="post-item-title" title="SCP命令详解(Linux和windows之间传送文件)"> <h3>SCP命令详解(Linux和windows之间传送文件)</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">18天前</div> </div> <p class="post-item-summary">项目平台&#xff1a; PC端: Linux  Ubuntu14 64bit Windows 7 64 bit 嵌入式&#xff1a;Linux  3.14 Linux系统之间传送文件&#xff0c;包括L</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1733400125h1585862.html" title="win系统如何运行msi后缀文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="win系统如何运行msi后缀文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1733400125h1585862.html" class="post-item-title" title="win系统如何运行msi后缀文件"> <h3>win系统如何运行msi后缀文件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">17天前</div> </div> <p class="post-item-summary">win系统如果运行msi后缀文件 1、用管理员运行命令行&#xff1a;输入&#xff1a;msiexec package  文件路径及名称 案例&#xff1a;msiexec package d:progr</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1733401320h1585956.html" title="映射Ubuntu虚拟机的文件到windows下">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="映射Ubuntu虚拟机的文件到windows下">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1733401320h1585956.html" class="post-item-title" title="映射Ubuntu虚拟机的文件到windows下"> <h3>映射Ubuntu虚拟机的文件到windows下</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">17天前</div> </div> <p class="post-item-summary">目录 前言介绍&#xff1a; 第一部分&#xff1a;安装samba实现文件共享服务 1.进入到根目录下&#xff1a; 2.安装samba主程序和通用程序 3.执行指令vim etcsambasmb</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1733495338h1598142.html" title="ubantu从u盘进行重装——前提是u盘已经下载好安装ubantu的文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="ubantu从u盘进行重装——前提是u盘已经下载好安装ubantu的文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1733495338h1598142.html" class="post-item-title" title="ubantu从u盘进行重装——前提是u盘已经下载好安装ubantu的文件"> <h3>ubantu从u盘进行重装——前提是u盘已经下载好安装ubantu的文件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">16天前</div> </div> <p class="post-item-summary">1.首先&#xff0c;我可敬的学长u盘里面已经下载了ubantu的文件。 2.然后&#xff0c;把这个u盘插到usb接口上&#xff0c;按下开机 3.在开机过程中&#xff0c;按下F2还是什么来着</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1733551381h1606003.html" title="电脑系统文件损坏?三种解决方案助你恢复正常使用">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="电脑系统文件损坏?三种解决方案助你恢复正常使用">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1733551381h1606003.html" class="post-item-title" title="电脑系统文件损坏?三种解决方案助你恢复正常使用"> <h3>电脑系统文件损坏?三种解决方案助你恢复正常使用</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">15天前</div> </div> <p class="post-item-summary">电脑系统文件损坏?三种解决方案助你恢复正常使用 在我们日常电脑的使用过程中,难免会遇到一些棘手的问题,比如电脑无法开机、应用闪退、频繁弹出错误提示等。这些现象往往预示着系统的某些文件可能已经遭到了损坏。面对这类情况,不必过于慌张,本文将介</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1733863480h1635054.html" title="windows使用命令行压缩解压文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="windows使用命令行压缩解压文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1733863480h1635054.html" class="post-item-title" title="windows使用命令行压缩解压文件"> <h3>windows使用命令行压缩解压文件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">12天前</div> </div> <p class="post-item-summary">安装7zip&#xff1a; https:www.7-zip 压缩&#xff1a;  7z.exe a tempa.tar tempdemo 解压&#xff1a;  7z x tempzip</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1733928454h1643449.html" title="双系统如何在windows系统下操作ubuntu下的文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="双系统如何在windows系统下操作ubuntu下的文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1733928454h1643449.html" class="post-item-title" title="双系统如何在windows系统下操作ubuntu下的文件"> <h3>双系统如何在windows系统下操作ubuntu下的文件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">11天前</div> </div> <p class="post-item-summary">我装有Windows和Ubuntu的双系统情况&#xff0c;需要在windows下访问ubuntu中的文件&#xff0c;怎么办呢&#xff1f; 原因&#xff1a;Windows 是无法识别Linux</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1733928522h1643467.html" title="windows 使用powershell中自带的工具(如wget,WebClient等)下载文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="windows 使用powershell中自带的工具(如wget,WebClient等)下载文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1733928522h1643467.html" class="post-item-title" title="windows 使用powershell中自带的工具(如wget,WebClient等)下载文件"> <h3>windows 使用powershell中自带的工具(如wget,WebClient等)下载文件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">11天前</div> </div> <p class="post-item-summary">系统&#xff1a;win10 powershell 版本&#xff1a;5.1(在终端用$psversiontable查看) wget(Invoke-WebRequest) windows的powershell中也有跟l</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1733977702h1650064.html" title="VMware清理vmdk文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="VMware清理vmdk文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1733977702h1650064.html" class="post-item-title" title="VMware清理vmdk文件"> <h3>VMware清理vmdk文件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">10天前</div> </div> <p class="post-item-summary">VMware清理vmdk文件 文章目录 VMware清理vmdk文件**在虚拟机上操作****在主机上操作** 问题 主机是Windows&#xff0c;安装了VMWare&#xff0c;在VMWare中安装了虚拟机Cent</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1733977709h1650065.html" title="谷歌和微软浏览器不能用了——解决方法">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="谷歌和微软浏览器不能用了——解决方法">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1733977709h1650065.html" class="post-item-title" title="谷歌和微软浏览器不能用了——解决方法"> <h3>谷歌和微软浏览器不能用了——解决方法</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">10天前</div> </div> <p class="post-item-summary">前言 前阵子发现电脑很卡顿&#xff0c;然后发现C盘快满了&#xff0c;就想着去清理下C盘&#xff0c;发现怎么清理都清理扩不了内存&#xff0c;于是就下载了个腾讯的电脑管家&#xff0c;利</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1734736780h1661828.html" title="国内Chrome浏览器下载安装教程,谷歌浏览器最新下载教程">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="国内Chrome浏览器下载安装教程,谷歌浏览器最新下载教程">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1734736780h1661828.html" class="post-item-title" title="国内Chrome浏览器下载安装教程,谷歌浏览器最新下载教程"> <h3>国内Chrome浏览器下载安装教程,谷歌浏览器最新下载教程</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">2天前</div> </div> <p class="post-item-summary">今天主要讲解的是国内Chrome浏览器下载安装教程&#xff0c;谷歌浏览器最新下载教程&#xff0c;包括确认浏览器版本、ChromeDriver 驱动的下载&#xff0c;同理&#xff0c;这个教程同样</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1734736911h1661846.html" title="浏览器如何安装插件--edge、谷歌、搜狗、360">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="浏览器如何安装插件--edge、谷歌、搜狗、360">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1734736911h1661846.html" class="post-item-title" title="浏览器如何安装插件--edge、谷歌、搜狗、360"> <h3>浏览器如何安装插件--edge、谷歌、搜狗、360</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">2天前</div> </div> <p class="post-item-summary">目录 Edge浏览器谷歌浏览器安装第三方插件的方法 搜狗浏览器安装第三方插件的方法  360浏览器安装第三方插件的方法  Edge浏览器谷歌浏览器安装第三方插件的方法 1. 打开浏览器&#xff0c;点击右上角头像右侧的【</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1734738796h1662099.html" title="Windows系统怎么给Linux系统传文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="Windows系统怎么给Linux系统传文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1734738796h1662099.html" class="post-item-title" title="Windows系统怎么给Linux系统传文件"> <h3>Windows系统怎么给Linux系统传文件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">2天前</div> </div> <p class="post-item-summary">一、配置环境文件传输工具&#xff1a;SSHSecureShellClient-3.2.9二、实现步骤1. 在Windows中安装文件传输工具SSHSecureShellClient-3.2.9&#xff0c;</p> </div> </div> </div> <div class="roclinux-cn comments"> <div class="roclinux-cn postcomm block-wrap" id="divCommentPost"> <h2 class="block-title"> 发表评论 </h2> <form id="saypl" target="_self" method="post" name="saypl" action="/comment/create/442380.html?safe_token=hU_2Fpvhi6_2BVtOhoVBUBaSMbjdR1JXhApOSe5xF3dc_2BO8HudZwThXWItltg8cwAB90L3FXewtgw7S4UJy8Et2gIg_3D_3D"> <input type="hidden" name="doctype" value="1" /> <input type="hidden" name="quotepid" value="0" /> <div class="roclinux-cn comment-box comment-textarea"> <textarea name="message" id="txaArticle" class="text" cols="50" rows="4" tabindex="5" placeholder="评论内容"></textarea> </div> <input name="sumbit" type="submit" tabindex="6" value="发表评论" class="sub"> </form> </div> </div> <div class="sn-comments"> <div class="sn-comments__title">全部评论 0</div> <div class="sn-comments__body"> <div class="sn-empty">暂无评论</div> </div> </div> </div> </div> <div class="aside"> <div class="block-wrap" id="side-top-dxt"> <h2 class="block-title">推荐文章<i class="mcico mico-right"></i></h2> <div class="mcdas"> <a href="/jishu/1731949433h1513655.html" title="[2023]Top7 适用于 Mac 的免费 IPhone 数据恢复工具" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="[2023]Top7 适用于 Mac 的免费 IPhone 数据恢复工具" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> [2023]Top7 适用于 Mac 的免费 IPhone 数据恢复工具 </h3> </div> </a> <a href="/jishu/1732102893h1521168.html" title="台式电脑怎么一键重装win10 电脑怎么重装系统win10" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="台式电脑怎么一键重装win10 电脑怎么重装系统win10" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> 台式电脑怎么一键重装win10 电脑怎么重装系统win10 </h3> </div> </a> <a href="/jishu/1732351337h1533151.html" title="用Ai绘制蓝色渐变字" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/uploads/image/0326.jpg" alt="用Ai绘制蓝色渐变字" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> 用Ai绘制蓝色渐变字 </h3> </div> </a> <a href="/jishu/1732776682h1554541.html" title="在阿里云ECS里安装Windows 7 32位中文版" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="在阿里云ECS里安装Windows 7 32位中文版" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> 在阿里云ECS里安装Windows 7 32位中文版 </h3> </div> </a> <a href="/jishu/1733292081h1572001.html" title="【HarmonyOS NEXT】-----1、模拟器-安装" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="【HarmonyOS NEXT】-----1、模拟器-安装" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> 【HarmonyOS NEXT】-----1、模拟器-安装 </h3> </div> </a> </div> </div> <div class="block-wrap" id="side-hot-view-item"> <h2 class="block-title">热门文章<i class="mcico mico-right"></i> </h2> <ul> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1731774694h1504224.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="windows下cmake安装和使用教程" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="windows下cmake安装和使用教程" target="_blank" href="/jishu/1731774694h1504224.html"> <h3>windows下cmake安装和使用教程</h3> </a> <span class="post-date">1月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732011412h1517003.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="u盘装win10系统提示“windows无法安装到这个磁盘,选中的磁盘采用GPT分区形式”解决方法" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="u盘装win10系统提示“windows无法安装到这个磁盘,选中的磁盘采用GPT分区形式”解决方法" target="_blank" href="/jishu/1732011412h1517003.html"> <h3>u盘装win10系统提示“windows无法安装到这个磁盘,选中的磁盘采用GPT分区形式”解决方法</h3> </a> <span class="post-date">1月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732353569h1533791.html" target="_blank">--> <!-- <img src="/uploads/image/0425.jpg" alt="Deluge 0.5.1.1 公布" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Deluge 0.5.1.1 公布" target="_blank" href="/jishu/1732353569h1533791.html"> <h3>Deluge 0.5.1.1 公布</h3> </a> <span class="post-date">29天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732354890h1534149.html" target="_blank">--> <!-- <img src="/uploads/image/0526.jpg" alt="【论文泛读】Joint Visual" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="【论文泛读】Joint Visual" target="_blank" href="/jishu/1732354890h1534149.html"> <h3>【论文泛读】Joint Visual</h3> </a> <span class="post-date">29天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732356772h1534653.html" target="_blank">--> <!-- <img src="/uploads/image/0603.jpg" alt="Cookie Session 和 项目小模版" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Cookie Session 和 项目小模版" target="_blank" href="/jishu/1732356772h1534653.html"> <h3>Cookie Session 和 项目小模版</h3> </a> <span class="post-date">29天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732361893h1535453.html" target="_blank">--> <!-- <img src="/uploads/image/0822.jpg" alt="解析企业Shell面试题" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="解析企业Shell面试题" target="_blank" href="/jishu/1732361893h1535453.html"> <h3>解析企业Shell面试题</h3> </a> <span class="post-date">29天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732771017h1554236.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="怎样将ubuntu的系统换成windows 7" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="怎样将ubuntu的系统换成windows 7" target="_blank" href="/jishu/1732771017h1554236.html"> <h3>怎样将ubuntu的系统换成windows 7</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1733296599h1572572.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Windows安装 hadoop 环境" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Windows安装 hadoop 环境" target="_blank" href="/jishu/1733296599h1572572.html"> <h3>Windows安装 hadoop 环境</h3> </a> <span class="post-date">18天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1733515781h1601288.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="window系统默认编码格式GBK怎么理解" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="window系统默认编码格式GBK怎么理解" target="_blank" href="/jishu/1733515781h1601288.html"> <h3>window系统默认编码格式GBK怎么理解</h3> </a> <span class="post-date">16天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1733521015h1601994.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="修改Word中一行文字未占满,文字就跳到了下一行" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="修改Word中一行文字未占满,文字就跳到了下一行" target="_blank" href="/jishu/1733521015h1601994.html"> <h3>修改Word中一行文字未占满,文字就跳到了下一行</h3> </a> <span class="post-date">16天前</span> </div> </li> </ul> </div> <div class="block-wrap" id="side-new-view-item"> <h2 class="block-title">最新文章<i class="mcico mico-right"></i> </h2> <ul> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713021540h628456.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Raid技术" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Raid技术" target="_blank" href="/free/1713021540h628456.html"> <h3>Raid技术</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713021438h628450.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="LSI_阵列卡操作手册" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="LSI_阵列卡操作手册" target="_blank" href="/free/1713021438h628450.html"> <h3>LSI_阵列卡操作手册</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713019527h628324.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="破解Centos7_root用户密码" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="破解Centos7_root用户密码" target="_blank" href="/free/1713019527h628324.html"> <h3>破解Centos7_root用户密码</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713019479h628321.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Redhat重置Root用户密码方法" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Redhat重置Root用户密码方法" target="_blank" href="/free/1713019479h628321.html"> <h3>Redhat重置Root用户密码方法</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713019358h628310.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="远程批量修改linux服务器密码的脚本" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="远程批量修改linux服务器密码的脚本" target="_blank" href="/free/1713019358h628310.html"> <h3>远程批量修改linux服务器密码的脚本</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734878078h1676750.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Windows7 系统安全设置权限技巧" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Windows7 系统安全设置权限技巧" target="_blank" href="/jishu/1734878078h1676750.html"> <h3>Windows7 系统安全设置权限技巧</h3> </a> <span class="post-date">5小时前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734878009h1676740.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="(Windows系统)详细介绍Windows系统 含有英文版" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="(Windows系统)详细介绍Windows系统 含有英文版" target="_blank" href="/jishu/1734878009h1676740.html"> <h3>(Windows系统)详细介绍Windows系统 含有英文版</h3> </a> <span class="post-date">5小时前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734876598h1676551.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="最新Windows 11教育版下载:专为教育设计的系统!" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="最新Windows 11教育版下载:专为教育设计的系统!" target="_blank" href="/jishu/1734876598h1676551.html"> <h3>最新Windows 11教育版下载:专为教育设计的系统!</h3> </a> <span class="post-date">5小时前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734875736h1676435.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Win7系统下搭建NFS服务器" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Win7系统下搭建NFS服务器" target="_blank" href="/jishu/1734875736h1676435.html"> <h3>Win7系统下搭建NFS服务器</h3> </a> <span class="post-date">6小时前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734874359h1676252.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="零基础使用UltraISO制作并安装纯净Win10系统指南" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="零基础使用UltraISO制作并安装纯净Win10系统指南" target="_blank" href="/jishu/1734874359h1676252.html"> <h3>零基础使用UltraISO制作并安装纯净Win10系统指南</h3> </a> <span class="post-date">6小时前</span> </div> </li> </ul> </div> </div> </div> <div class="footer"> CopyRight © 2022 All Rights Reserved. <br class="footer-br" /> <a href="/" target="_blank">Powered By 技术交流 – FreeNAS中文网</a>| <a target="_blank" rel="nofollow" href="https://beian.miit.gov.cn/" style="font-size: 12px;">浙ICP备08016383号-4</a> 友情链接: <a href="https://www.freenas.com.cn/sitemap/1.txt" title="sitemaps">网站地图1</a> <a href="https://www.freenas.com.cn/sitemap/2.txt" title="sitemaps">网站地图2</a> <a href="https://www.freenas.com.cn/sitemap/3.txt" title="sitemaps">网站地图3</a> <a href="https://www.freenas.com.cn/sitemap/4.txt" title="sitemaps">网站地图4</a> <a href="https://www.freenas.com.cn/sitemap/5.txt" title="sitemaps">网站地图5</a> <a href="https://www.freenas.com.cn/sitemap/6.txt" title="sitemaps">网站地图6</a> <a href="https://www.freenas.com.cn/sitemap/7.txt" title="sitemaps">网站地图7</a> <a href="https://www.freenas.com.cn/sitemap/8.txt" title="sitemaps">网站地图8</a> <a href="https://www.freenas.com.cn/sitemap/9.txt" title="sitemaps">网站地图9</a> <a href="https://www.freenas.com.cn/sitemap/10.txt" title="sitemaps">网站地图10</a> <a href="https://www.freenas.com.cn/sitemap/11.txt" title="sitemaps">网站地图11</a> <a href="https://www.freenas.com.cn/sitemap/12.txt" title="sitemaps">网站地图12</a> <a href="https://www.freenas.com.cn/sitemap/13.txt" title="sitemaps">网站地图13</a> <a href="https://www.freenas.com.cn/sitemap/14.txt" title="sitemaps">网站地图14</a> <a href="https://www.freenas.com.cn/sitemap/15.txt" title="sitemaps">网站地图15</a> <a href="https://www.freenas.com.cn/sitemap/16.txt" title="sitemaps">网站地图16</a> <a href="https://www.freenas.com.cn/sitemap/17.txt" title="sitemaps">网站地图17</a> <a href="https://www.freenas.com.cn/sitemap/18.txt" title="sitemaps">网站地图18</a> <a href="https://www.freenas.com.cn/sitemap/19.txt" title="sitemaps">网站地图19</a> <a href="https://www.freenas.com.cn/sitemap/20.txt" title="sitemaps">网站地图20</a> <a href="https://www.freenas.com.cn/sitemap/21.txt" title="sitemaps">网站地图21</a> <a href="https://www.freenas.com.cn/sitemap/22.txt" title="sitemaps">网站地图22</a> <a href="https://www.freenas.com.cn/sitemap/23.txt" title="sitemaps">网站地图23</a> <a href="https://www.freenas.com.cn/sitemap/24.txt" title="sitemaps">网站地图24</a> <a href="https://www.freenas.com.cn/sitemap/25.txt" title="sitemaps">网站地图25</a> <a href="https://www.freenas.com.cn/sitemap/26.txt" title="sitemaps">网站地图26</a> <a href="https://www.freenas.com.cn/sitemap/27.txt" title="sitemaps">网站地图27</a> <a href="https://www.freenas.com.cn/sitemap/28.txt" title="sitemaps">网站地图28</a> <a href="https://www.freenas.com.cn/sitemap/29.txt" title="sitemaps">网站地图28</a> <a href="https://www.freenas.com.cn/sitemap/30.txt" title="sitemaps">网站地图30</a> <a href="https://www.freenas.com.cn/sitemap/31.txt" title="sitemaps">网站地图31</a> <a href="https://www.freenas.com.cn/sitemap/32.txt" title="sitemaps">网站地图32</a> <a href="https://www.freenas.com.cn/sitemap/33.txt" title="sitemaps">网站地图33</a> <a href="https://www.freenas.com.cn/sitemap/34.txt" title="sitemaps">网站地图34</a> <a href="https://www.freenas.com.cn/sitemap/35.txt" title="sitemaps">网站地图35</a> <a href="https://www.freenas.com.cn/sitemap/36.txt" title="sitemaps">网站地图36</a> <a href="https://www.freenas.com.cn/sitemap/37.txt" title="sitemaps">网站地图37</a> <a href="https://www.freenas.com.cn/sitemap/38.txt" title="sitemaps">网站地图38</a> <a href="https://www.freenas.com.cn/sitemap/39.txt" title="sitemaps">网站地图39</a> <a href="https://www.freenas.com.cn/sitemap/40.txt" title="sitemaps">网站地图40</a> <a href="https://www.freenas.com.cn/sitemap/41.txt" title="sitemaps">网站地图41</a> <a href="https://www.freenas.com.cn/sitemap/42.txt" title="sitemaps">网站地图42</a> <a href="https://www.freenas.com.cn/sitemap/43.txt" title="sitemaps">网站地图43</a> <a href="https://www.freenas.com.cn/sitemap/44.txt" title="sitemaps">网站地图44</a> <a href="https://www.freenas.com.cn/sitemap/45.txt" title="sitemaps">网站地图45</a> <a href="https://www.freenas.com.cn/sitemap/46.txt" title="sitemaps">网站地图46</a> </div> <script src="/view/js/xiuno.js?2.3.0"></script> <script src="/view/template/quzhiwa/js/custom.js?2.3.0"></script> <script> $('.cat-tab-wrap li[data-active="fid-1"]').addClass('current-menu-item'); $('.menu-header-container li[data-active="fid-1"]').addClass('current-menu-item'); </script> </body> </html>