6月 17, 2012
4月 02, 2012
GridView 設定文字底色
Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound 'e.Row.Cells(1).BackColor = System.Drawing.Color.LightBlue 'GridView1.Columns(0).ItemStyle.BackColor = System.Drawing.Color.LightBlue 'GridView1.Rows(0).Cells(0).BackColor = System.Drawing.Color.LightBlue For i As Integer = 0 To GridView1.Rows.Count - 1 For j As Integer = 0 To 38 If GridView1.Rows(i).Cells(j).Text.Length = 2 Then GridView1.Rows(i).Cells(j).BackColor = System.Drawing.Color.LightBlue End If Next Next End Sub
3月 29, 2012
keytool android 金鑰的註冊
首先在Eclipse中的 Window->Preferences->Android->Build->Default debug keystroe 取得keystore的存放路徑 接著開啟CMD 到該路徑下 輸入以下命令 keytool -list -v -keystore debug.keystore[視檔名更改] 便可以獲得MD5編碼
3月 17, 2012
Matlab 基礎語法
程式接續下一行用... var = 1+1 +-*/ ^次方 str=’gggg’ 字串 str3(6:10) 取出字串6到10個字 str3[1 6 9] 取出第1 6 9個字 eval(‘32+6’)字串轉數值 陣列 一維陣列 列陣列 v2 = [1 2 3 4] 行陣列 v3 = [1;2;3] [a,b]橫向並排 [a;b]直向並排 Y=[a:b] 建立一個間距為1 建立列向量 A:step:b step=間距 A(直行,橫列) sort(v1) 由小到大 sort(v1,’descend’) 由大到小 [val,ind]=max(a) 找出每一行最大值的索引值 [mx,col]=max(a) 找出每一列最大值的索引值 Rand 隨機亂數 0~1 Rand(n) 0~1 n*n亂數矩陣 Randn 平均值0 標準差為1的常態分佈亂數 Fliplr(a)將陣列左右翻轉 Flipud(a)將陣列上下翻轉 Rot90(a)逆時針轉90度 Rot90(a,k)逆時針轉k*90度 a = [12;45] b = [2;3] c = a. *b 在運算元前面加. 表示元素對元素的運算 關係運算子 ==等於 ~= 不等於 & and | or ~ not運算 If i<2 Elseif h<2 Else End Switch kk<1 Case 1 Otherwise 敍述主體n End For num=1:200 End For i=[1 2;3 4] End While i<100 End; M =[1 5 9; 2 4 10; 3 5 7; 1 3 5; 3 4 5; 5 8 9; 4 6 10; 8 9 12; 7 10 11; 10 12 14] for i=1:10 M(i,4) = (M(i,1)+2*M(i,2)+M(i,3))/4%P1 value M(i,5) = M(i,3)-M(i,1)%P3 value end; K=sortrows(M,4) 依照陣列索引排序 for o=1:11 for j=1:10 if K(o,4) == K(j,4) if K(o,2) > K(o+1,2) temp = K(o,1:5) K(o,1:5) = K(j,1:5) K(j,1:5) = temp elseif K(o,2) == K(j,2) & K(o,5) > K(j+1,5) temp = K(o,1:5) K(o,1:5) = K(j,1:5) K(j,1:5) = temp end; end; end; end;
3月 14, 2012
安裝Tomcat
接著設定Windows環境變數.....電腦->內容->進階系統設計->進階->環境變數 在PATH變數里的最後面貼上 ;C:\Program Files\Java\jdk1.6.0_05\bin (最前面是分號沒錯!!) 在下面按新增 新增下列所有的值 變數名稱 變數值 JAVA_HOME C:\Program Files\Java\jdk1.6.0_05\ CLASSPATH C:\Program Files\Java\jdk1.6.0_05\lib (以上請視情況修改) 以上修改完畢以後就可以測試啟動Tomcat(預設port:8080) 執行: D:\apache-tomcat-6.0.16\bin\startup.bat 如果想關掉他 就直接將終端機關掉就可以了 手動設定Tomcat管理員帳號 編輯 D:\apache-tomcat-6.0.16\conf\tomcat-users.xml<?xml version='1.0' encoding='utf-8'?> <tomcat-users> <role rolename="manager"/> <role rolename="admin"/> <user username="admin" password="pass" roles="admin,manager"/> </tomcat-users>(怎麼用 應該看一下就知道怎麼設定了吧) Tomcat 目錄結構 bin tomcat程式指令(啟動與停止) conf tomcat設定檔 EX:使用者帳號: tomcat-users.xml logs 存放日誌檔 webapps 存放網頁應用程式目錄 在該目錄底下放置appName.war的封裝檔 tomcat會自動解壓縮 並以http://127.0.0.1/appName/為路徑
3月 09, 2012
heroku git的小指令
輸入指令 heroku login 輸入帳號跟密碼 登入成功後 下載APP的方式如下 輸入指令 記輸入APP名稱 git clone git@heroku.com:furious-robot-218.git -o heroku 會下載到使用者名稱的資料夾 進到APP的資料夾 然後輸入指令 git push heroku master 就能上傳上去更新你的APP
訂閱:
文章 (Atom)