<script type="text/javascript"><!-- var Sys = {}; var ua = navigator.userAgent.toLowerCase(); if (window.ActiveXObject) Sys.ie = ua.match(/msie ([/d.]+)/)[1] else if (document.getBoxObjectFor)
這兩天, 在運行checkstyle檢查代碼的時候, 老是出現"Unable to get class information for @throws tag 'xxxException" 看了半天, 找不出原因, java類中的import都是正確的, 編譯什麼也都沒有問題. 上網搜尋了一下, 找到一篇討論, http://forums.topcoder.com/?module=Thread&threadID=508195&start=0 The cause is that
我的一個cxf項目, 在修改了web.xml的url-pattern後,調用報錯,如下: 2009-12-8 10:09:00 org.apache.cxf.phase.PhaseInterceptorChain doIntercept資訊: Interceptor has thrown exception, unwinding now Response was of unexpected text/html ContentType. Incoming portion of HTML
對一個db2表執行改變欄位屬性的操作:alter table schema.tablename alter comlun colName set datatype varchar(32);執行之後,在向表中插入資料報錯:SQL0668N Operation not allowed for reason code "7" on table "DB2INST1.EMP". SQLSTATE=57016通過db2 => load query table
問題描述:今天在用makefile編譯檔案,使用GDB進行調試,在設定斷點時出現以下問題:No symbol table is loaded. Use the "file" command.解決方案:後來發現是編譯時間沒有正確設定-g選項,這個-g選項不能直接放在編譯命令中,要在makefile的開頭定義CFLAGS 變數:CFLAGS = -g ,這樣list命令才能列出原始碼。(具體原因還不知道)
文章首先介紹了UART通訊時常採用的查詢接收方式、中斷接收方式的缺點,介紹了S3C44B0X處理器中通過UART口,採用DMA方式接收資料的方法以及關鍵的代碼,並分析了採用DMA方式比採用中斷方式與查詢方式的優點。實驗證明,基於DMA的UART通訊,為CPU進一步減輕了負擔,提高了通訊的可靠性。 High efficiency UART communication based on DMA controller in ARM processor and its application