Time of Update: 2018-12-06
---實驗證明該方法是可行的。/*(op=gt_cl_hp_rui()op.help()op.getscripts_r_self "資訊返回欄" #{} --- 修改於天津資料 execute( "substring op.getscripts_r_self_string 3 10" ) ---是行硬碟中讀入資料)*/---實驗證明上面方法不是可行的------ 要進行新的思路(op=gt_cl_hp_rui()xinx = op.getscripts "資訊返回欄" #{} op
Time of Update: 2018-12-06
No goals have been specified for this build今天通過 mvn archetype:create -DgroupId=ricki.cheung.struts -DartifactId=my_struts -DarchetypeGroupId=org.apache.struts -DarchetypeArtifactId=struts2-archetype-blank -DarchetypeVersion=2.0.14-SNAPSHOT
Time of Update: 2018-12-06
fn AutoPressOK flag:true = ( if flag then ( DialogMonitorOPS.unRegisterNotification id:#autoPressYes fn autoPressOK = ( WindowHandle = DialogMonitorOPS.GetWindowHandle()
Time of Update: 2018-12-06
open-jdk 換成 sun jdk 今天在新的Linux伺服器上將項目check out出來以後,重新build,就出現了下面的問題:[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.1:war (default-war) on project rendezvous: Error assembling WAR: Failed to read filesystem
Time of Update: 2018-12-06
global TDTblRolloutrollout TDTblRollout "Untitled" ( dotnetcontrol one "System.Windows.Forms.RadioButton" width:60 height:20 pos:[10,10]-- dotnetcontrol two "System.Windows.Forms.RadioButton" width:60 height:20 pos:[10,40]--
Time of Update: 2018-12-06
//第幾個沒有選 <input type="checkbox" name="checkbox1" checked> <input type="checkbox" name="checkbox1"> <input type="checkbox" name="checkbox1" checked> <input type="checkbox" name="checkbox1"> <input type="checkbox"
Time of Update: 2018-12-06
1. Java實現interface NetWork{public abstract void browser();}class Real implements NetWork{ @Overridepublic void browser() {// TODO Auto-generated method stub System.out.println("瀏覽資訊"); }}public class designpattern_proxy implements
Time of Update: 2018-12-06
0 前言 Subversion是一個免費的開源的版本管理系統,它是作為CVS(Concurrent Versions System)的取代品出現的。本文簡單介紹了Subversion在Fedora上的安裝過程及其基本概念和使用方法。您可以到O'Reilly出版的 開源書籍Version Control with Subversion的首頁線上閱讀(中、英文版本都有),以擷取更多資訊。1 在Fedora上安裝Subversion [aaronwong@localhost ~]$
Time of Update: 2018-12-06
1. 什麼時候能默寫出來呢?#include <iostream>using namespace std;struct node{int data; node *next; node *prior;};class Link{public: Link() { head_ptr = NULL; tail_ptr = NULL; }void insertNode();void insertNode(node *ptr);void
Time of Update: 2018-12-06
所有命令按字母順序排列,只介紹最常用參數,相信等你看完之後,就有能力man更詳細的用法了 此前own也曾發表過幾篇文章,詳細的介紹了幾個命令比如ls,sudo,chmod等等,看不懂man的,請自行尋找:)直到前天群裡有人問cd命令怎麼用..暴寒~~想想也是,一定有很多在win下也沒接觸過命令的吧?於是決定寫點東東 (轉自OwnLinux)apt-get:debian系系統的軟體包管理程式(其圖形化前端就是大名鼎鼎的新立得了),會自動幫你搞定依賴關係最常用參數:update
Time of Update: 2018-12-06
線段樹在一些acm題目中經常見到,這種資料結構主要應用在計算幾何和地理資訊系統中。就為一個線段樹:(PS:可能你見過線段樹的不同表示方式,但是都大同小異,根據自己的需要來建就行。)1.線段樹基本性質和操作線段樹是一棵二叉樹,記為T(a, b),參數a,b表示區間[a,b],其中b-a稱為區間的長度,記為L。線段樹T(a,b)也可遞迴定義為:若L>1 : [a, (a+b) div 2]為 T的左兒子; [(a+b) div 2,b]為T 的右兒子。 若L=1 :
Time of Update: 2018-12-06
/*我太二了, 上來就暴力,然後TLE兩次。然後鬱悶的去吃飯,回來一想棧的結構,10分鐘AC。有種想撞牆的衝動!*///My Code:#include <iostream>#include <cstdio>#include <cstring>using namespace std;const int N = 200005;char s[N];char str[N];int main() {//freopen("data.in", "r", stdin);
Time of Update: 2018-12-06
http://api.t.sina.com.cn/statuses/followers/『uid』.json?source=1610801709&&cursor=1&&count=10 Response response = weibo.getFollowers2(); // System.out.println(response); String str = response.asString();
Time of Update: 2018-12-06
POJ 1177 (線段樹+離散化+掃描線),題目連結為http://poj.org/problem?id=1177在做本題之前,必須先瞭解什麼是線段樹和離散化,請看前一篇博文線段樹(segment tree),裡面對線段樹和離散化的說明相對比較清楚了。 對於這題,我們的思路步驟如下(代碼和下面的文字解釋結合著看):1.對於輸入的N個矩形,有2*N條縱向邊,我們把這些邊叫做掃描線2.建立一個struct ScanLine,保留這些掃描線struct ScanLine{ int x;//橫座標
Time of Update: 2018-12-06
data segmentstr1 db 100len1 db ? db 100 dup(?)str2 db 100len2 db ? db 100 dup(?)inf1 db 0ah, 0dh, 'Input string1:','$'inf2 db 0ah, 0dh, 'Input string2:','$'inf3 db 0ah, 0dh, 'string1 = string2 ? 'judg db 20h, 20h, 20h, '
Time of Update: 2018-12-06
somePoint=#([0,0],[20,20],[20,40]) ---是一群點--通過比較找到最大矩陣_maxX;_maxY;_minX;_minY; --- 定義最大範圍_nr= 1 for i in somePoint do ( if (_nr > 1) then( if (i.x > _maxX.x)then( _maxX = i; )
Time of Update: 2018-12-06
項目中有一個 alert亂碼問題,按照網上的方法改了很久不沒反應,結果最終突然靈機一動想到了伺服器的編碼,結果ok了 ,花了好長時間阿,囧 雖然項目全部採用了UTF-8編碼,所有的源檔案*.java,*.jsc,*.html,*.ftl都採用了UTF-8編碼。可是還是出現了亂碼問題。很是不爽,後來找到了tomcat,和resin的配置。Tomcat的配置。(conf/server.xml) <!--</span><span style="COLOR:rgb(0,12
Time of Update: 2018-12-06
sudo apt-get install g++ curl libssl-dev apache2-utils sudo apt-get install git-core git clone git://github.com/ry/node.git (下載原碼)然後./configure make sudo make install 編寫如下小程式,命名為example.js,儲存在node檔案夾下。var http =
Time of Update: 2018-12-06
Spring啟動異常: cvc-elt.1: Cannot find the declaration of element 'beans'2008-09-07 22:41今天把線上聊天室代碼改了下, 想啟動應用測試.
Time of Update: 2018-12-06
-- 把資料儲存成 xml 格式fn bipXml bipPaths frames filePath= ( if bipPaths.count >0 then ( XmlDocumentXDoc = dotNetobject "System.Xml.XmlDocument" dotnetPath = dotNetClass "System.IO.Path" dotnetDirectory