28/01/2014 MCAFEE SECURE 認證的網站

https://www.mcafeesecure.com/RatingVerify?ref=www.HongKongCupid.com

2013年8月7日 星期三

*系統*Linux socket~網絡編程最常使用的函數合集~**

**系統**Linux socket~網絡編程最常使用的函數合集~**

**1.字節序函數#include <netinet.h>uint16_t htons(uint16_t host16bitvalue); uint32_t htonl(uint32_t host32bitvalue); 返回:網絡字節序值uint16_t ntohs(uint16_t net16bitvalue); uint32_t ntohl(uint32_t net32bitvalue); 返回:主機字節序值**

**2.字節操作函數 #include <strings.h>void bzero(void *dest, size_t nbytes); void bcopy(const void *src, void *dest, size_t nbytes); int bcmp(const void *ptr1, const void *ptr2, size_t nbytes); 返回:0—相等,非0—不相等#include <string.h>void *memset(void *dest, int c, size_t len​​); void *memcpy(void *dest, void *src, size_t nbytes); int memcmp(const void *ptr1, const void *ptr2, size_t nbytes); 返回:0—相同,>0或<0—不相同;進行比較操作時,
假定兩個不相等的字節均為無符號字符(unsigned char)**

**3.socket函數  #include <sys/socket.h>int socket(int family, int type, int protocol); 返回:非負描述字—成功,-1—出錯。family指定協議族,有如下取值:· AF_INET IPv4協議· AF_INET6 IPv6協議· AF_LOCAL Unix域協議· AF_ROUTE 路由套接口· AF_KEY 密鑰套接口type指定套接口類型:· SOCK_STREAM 字節流套接口· SOCK_DGRAM 數據報套接口· SOCK_RAW 原始套接口protocol一般設為0,除非用在原始​​套接口上。並非所有family和type的組合都是有效的。AF_LOCAL等於早期的AF_UNIX       **


**4.connect函數#include <sys/socket.h>int connect(int sockfd, const struct sockaddr *servaddr, socklen_t addrlen);返回:0—成功,-1—出錯。sockfd是socket函數返回的套接口描述字,servaddr和addrlen是指向---
---服務器的套接口地址結構指針和結構大小。在調用connect之前不必非得調用bind函數。如果是TCP,則connect激發TCP的三路握手過程,在阻塞情況下,
只有在連接建立成功或出錯時該函數才返回,出錯情況:· 沒有收到SYN分節的響應,在規定時間內經過重發仍無效,
則返回ETIMEDOUT;· 如果對SYN分節的響應是RST,表示服務器在指定端口上沒有相應的服務,
返回ECONNREFUSED;· 如果發出SYN在中間路由器上引發一個目的地不可達ICMP錯誤,
​​在規定時間內經過重發仍無效,則返回EHOSTUNREACH或
ENETUNREACH錯誤。注意:如果connect失敗,則套接口將不能再使用,必須關閉,
不能對此套接口再調用函數connect       **


**5.bind函數   #include <sys/socket.h>int bind(int sockfd, const struct sockaddr *maddr, socklen_t addrlen);  返回:0—成功,-1—出錯。進程可以把一個特定的IP地址捆綁到他的套接口上,
但此IP地址必須是主機的一個接口。對於IPv4,通配地址是INADDR_ANY,其值一般為0;使用方法如下:struct sockaddr_in servaddr;servaddr.sin_addr.s_addr = htonl(INADDR_ANY);對於IPv6,方法如下:struct sockaddr_in6 serv;serv.sin6_addr = in6addr_any; (系統分配變量in6addr_any並將其初始化
為常值IN6ADDR_ANY_INIT。)如果讓內核選擇臨時端口,注意的是bind並不返回所選的斷口值,
要得到一個端口,必須使用getsockname函數。bind失敗的常見錯誤是EADDRINUSE(地址已使用) **


**6.listen函數  #include <sys/socket.h>int listen(int sockfd, int backlog);  返回:0—成功,-1—出錯。listen把未連接的套接口轉化為被動套接口,指示內核應接受指向此---
---套接口的連接請求。第二個參數規定了內核為此套接口排隊的最大連接數。參數backlog曾經規定為監聽套接口上的未完成連接隊列和已完成連接--
---隊列總和的最大值,但各個系統的定義方法都不盡相同;歷史上常---
---把backlog置為5,但對於繁忙的服務器是不夠的;backlog的設置---
---沒有一個通用的方法,依情況而定,但不要設為0       **


**7.accept函數   #include <sys/socket.h>int accept(int sockfd, struct sockaddr *cliaddr, socklen_t *addrlen);返回:非負描述字—OK,-1—出錯。accept從已完成連接隊列頭返回下一個連接,若已完成連接隊列為空,
則進程睡眠(套接口為阻塞方式時)。參數cliaddr和addrlen返回連接對方的協議地址,其中addrlen是值-結果參數,
調用前addrlen所指的整數值要置為cliaddr所指的套接口結構的長度,
返回時由內核修改。accept成功執行後,返回一個連接套接口描述字。如果對客戶的協議地址沒有興趣,可以把cliaddr和addrlen置為空指針       **


**8.close函數   #include <unistd.h>int close(int sockfd);返回:0—OK,-1—出錯。TCP套接口的close缺省功能是將套接口做上“已關閉”標記,
並立即返回到進程。這個套接口描述字不能再為進程使用,
但TCP將試著發送已排隊待發的任何數據,然後按正常的TCP連接--
--終止序列進行操作。close把描述字的訪問計數減1,當訪問計數仍大於0時,close並不會---
---引發TCP的四分組連接終止序列。若確實要發一個FIN,
可以用函數shutdown        **

*
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

**從綁架瀏覧器--竊取信用卡/金融等相關個人資料的--search.certified-toolbar.<電腦病毒>!!請立即刪除它喔~!(多國)*EN*From kidnapping Browser Your - steal credit / debit and other related personal data - search. Certified-toolbar.!! Delete it immediately Oh!**KR** 납치 브라우저에서 - 훔쳐 신용 / 직불 및 기타 관련 개인 정보 -..!! 검색 인증 - 도구 모음 아 즉시 삭제!**CN**从绑架浏覧器--窃取信用卡/金融等相关个人资料的--search.certified-toolbar.<电脑病毒>!!请立即删除它喔~!**

**從綁架瀏覧器--竊取信用卡/金融等相關個人資料的--
--search.certified-toolbar.<電腦病毒>!!
請立即刪除它喔~!*(多國)**
 *EN*From kidnapping Browser Your - steal credit / debit and other related  
 personal data - search. Certified-toolbar. <Computer Virus>!! 
Delete it immediately Oh!**
*KR** 납치 브라우저에서 - 훔쳐 신용 / 직불 및 기타 관련 개인 정보 -..!! 
검색 인증 - 도구 모음 <Computer Virus> 즉시 삭제 !**
*CN***从绑架浏覧器--窃取信用卡/金融等相关个人资料的 ---
--search.certified-toolbar.<电脑病毒>!!请立即删除它喔~!**

**search.certified-toolbar-認証工具欄病毒**
**search.certified-toolbar-certified Toolbar Virus**
***search.certified - 도구 모음 인증 모음 바이러스**
**search.certified工具栏--认证工具栏病毒**
**
















**如何刪除 search.certified-toolbar?! **Step 1.進入安全模式(含網路功能)
重開機後,按"F8",進入開機選單。接著請用原來的登入帳號登入 **

**How do I delete search.certified-toolbar?! 
Step 1. Enter safe mode (with networking)
After rebooting, press "F8", enter the boot menu. 
Then use the original account login   **

**어떻게 search.certified - 도구 모음에서 삭제합니까?! 
단계 1. 안전 모드 (네트워킹 사용)를 입력 
재부팅 , "F8"을 눌러 부팅 메뉴를 입력합니다.  
그런 다음 원래 계정 로그인을 사용    **

**如何删除search.certified工具栏?
第1步:进入安全模式网路功能
重开机后F8进入开机选单接着原来登入帐号    **

**















**Step 2.下載  Malwarebytes Anti-Malware 
 防惡意軟體 [註] 。並執行它        *
**Step 2. Download Malwarebytes Anti-Malware 
 Anti-Malware [Note]. And execute it       *
**2 단계. 다운로드  Malwarebytes Anti-Malware  
안티 - 멀웨어 안티 - 멀웨어 [참고]. 그리고 실행        *
**第2步:下载   Malwarebytes Anti-Malware  
反恶意软件恶意软体[]执行它         *
**



















**Step 3.重開機,進入一般模式後,確認未被刪除的套件
a.移除 Certified Toolbar程式-----控制台>>新增/刪除程式  **


**Step 3. Reboot into normal mode, confirm that the package has not been deleted 
  a. Remove Programs Certified Toolbar 
Control Panel >> Add / Remove Programs  
**


**단계 3. 정상 모드 재부팅 패키지가 삭제되지 않았는지 확인 
. 프로그램 인증 툴바를 제거    
제어판 >> 프로그램 추가 / 제거     
**


**第3步:重开机进入一般模式确认未被删除套件
一个认证工具栏移除程式
控制台>>新增/删除程式       
**

**


**












**b.移除瀏覽器的第三方程式   
    Microsoft Internet Explorer  : 
工具 >> 管理附加元件
搜尋 Certified Toolbar 元件,並移除它。
    Mozilla Firefox :
工具 >> 附加元件.
搜尋 Certified Toolbar 元件,並移除它。
    Google Chrome :
點選右上方 "自訂及控制你的Google Chrome"
>>工具 >>擴充功能
搜尋 Certified Toolbar 元件,並移除它。

c.移除 Certified Toolbar殘留檔案 
檔案總管 >> 搜尋 CertifiedToolbar 並移除它       **

**b. removing third-party browser
     Microsoft Internet Explorer:
Tools >> Manage Add-ons
Search Certified Toolbar components and remove it.
     Mozilla Firefox:
Tool >> add-ons.
Search Certified Toolbar components and remove it.
     Google Chrome:
Click on the top right "customize and control your Google Chrome"
>> Tools >> Extensions
Search Certified Toolbar components and remove it.

c. removing residual files Certified Toolbar
File Explorer >> Search CertifiedToolbar and remove it          **

**나. 타사 브라우저 제거
     마이크로 소프트 인터넷 익스플로러 :
도구 >> 추가 기능 관리
인증 도구 모음 구성 요소를 검색하고 제거합니다.
     모질라 파이어 폭스 :
도구 >> 기능을 추가합니다.
인증 도구 모음 구성 요소를 검색하고 제거합니다.
     구글 크롬 :
오른쪽 상단을 클릭 "사용자 및 Google 크롬을 제어"
>> 도구 >> 확장
인증 도구 모음 구성 요소를 검색하고 제거합니다.

C. 제거 잔류 파일 인증 모음
탐색기 >> 검색 CertifiedToolbar을 제기하고 제거         **

**(二)移除浏览器的第三方程式
    Microsoft Internet Explorer中
工具>>管理附加元件
搜寻工具栏认证元件并移除它
    Mozilla Firefox浏览器
工具>>附加元件
搜寻工具栏认证元件并移除它
    谷歌Chrome
点选右上方的“控制谷歌Chrome浏览器
>>工具>>扩充功能
搜寻工具栏认证元件并移除它           **

**
  • Español
  • English
  • Français
  • Deutsch
  • Italiano
  • Português
  • 中文
  • Polski
  • Nederlands
  • 日本語
  • Türkçe
  • 한국어/조선말
  • Svenska
  • Norsk
  • עִבְרִית
  • عربي
  • Русский
  • Dansk
  • Suomi
  • Bahasa Indonesia
  • Bahasa Melayu
  • Tiếng Việt
  • Tagalog
  • Română
  • Magyar
  • Ελληνικά
  • Čeština      
  • **


    &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

    2013年8月6日 星期二

    **Chrome拒絕安裝--IDM外掛~!!來搞定喔~^^

    ****Chrome拒絕安裝--IDM外掛~!!**來搞定喔~^^
     
    *


    **安裝在電腦的Internet Download Manager (IDM)績傳軟體,
    在Chrome瀏覽器的IDM外掛程式消失 ~?!**

    **按照官方的教程重新安裝,但是出現"Google 已將idm integration標記---
    ---為惡意程式並且防止安裝該擴充功能" 或"Google 已将idm integration---
    ---标记为恶意扩展程序并阻止安装***

    **難導IDM被惡意舉報了,還是什麼的原因而被Google Block List了…??…
    不論是什麼問題造成的,還是加回這個功能,好樣我快快下載音樂 ~**
    **1. 首先在Chrome的右上角按一下"功能圖標" >> 再按一下 “設定“進入--
    --設定介面,拉到底下按一下"顯示進階設定…“到進階設定列表, 
    你會看見這一行"中文:阻擋釣魚網站及惡意程式---
    ---(英文:Enable phishing and malware protection)",
    把左邊的勾選框"取消勾選“的動作 如下圖所示         **
    **













    **2. 打開Google Chrome的擴充(外掛/插件)頁面,你可以在---
    ---瀏覽器的網址列輸入"chrome://extensions/“快速打開,然後
    在硬盤找到IDM的安裝路徑文件夾"  -----
    默認:C:\Program Files\Internet Download Manager“, 
    找到一份檔案文件名為"IDMGCExt.crx“,將這份檔案---
    ---文件"拖曳“到"擴充頁面,安裝即可。 如下圖所示      **
    **













    &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

    **Sweet Home 3D免費室內設計軟體* 從預設的目錄或自建目錄中尋找傢俱,如預設目錄有廚房、客廳、臥室、浴室...包羅萬有,精雕細刻*多國版(繁簡英意澳美西法)~隨你所願~打造一個屬于自已的溫馨堡壘**快來動手吧!^^EN * Sweet Home 3D free interior design software * self from the default directory or the directory to find furniture, such as the default directory with a kitchen, living room, bedroom, bathroom ... inclusive, multi-country carved * Version (Traditional and Simplified English Italian Australian and U.S. Sifa) ~ ~ as you wish to build a fort belonging to their own cozy ** Come and Do it! ^^KR * 스위트 홈 3D 무료 인테리어 디자인 소프트웨어를 기본 디렉토리 또는 부엌의 기본 디렉토리로 가구, 거실, 침실, 욕실, 거실 ... 포함, 여러 나라 새겨진 *을 찾을 수있는 디렉토리에서 * 자기 버전 (번체 및 간체 영어, 이탈리아어 호주와 미국 시파) ~ 당신은 자신의 아늑한 **에 속하는 요새를 구축하기 위해 원하는대로 ~를 와서 마!^^CN*甜首页三维地震成本内室设计软体*从预设的眼录或自己肯眼录中揣摸找家菜系俱,如预设目录有厨房,顾客厅,窝室,浴室...从荃湾羽精度包裹雕细时间*多国一个属于自己的已的温馨堡垒**安慰来动手吧(Hankan英意澳美西律) - 随你Shogan - 混凝土大版!^^* FR * Accueil logiciels de design d'intérieur 3D libre douce * auto dans le répertoire par défaut ou l'annuaire pour trouver des meubles, tels que le répertoire par défaut avec une cuisine, salon, chambre, salle de bains ... inclusive, multi-pays sculpté * Version (traditionnel et simplifié Anglais Italien australien et Sifa US) ~ ~ que vous souhaitez construire une forteresse appartenant à leurs propres ** confortables Venez faire!^^

    ^**Sweet Home 3D~免費室內設計軟體 *-從預設的
    Background image in plan pane目錄或自建目錄中尋找傢俱,如預設目錄有廚房、
    客廳、臥室、浴室...包羅萬有,精雕細刻 *多國版 
    (繁簡英韓日意澳美西法)~^*隨你所願~打造一個屬于--
    --自已的溫馨堡壘**快來動手吧!^^
    *EN* Sweet Home 3D free interior design software * self from the default 
    directory or the directory to find furniture, such as the default directory 
    with a kitchen, living room, bedroom, bathroom ... inclusive, multi-country 
    version of carved * (Traditional and Simplified English Italian Australian
    and U.S. Sifa) ~ ~ as you wish to build a fort belonging to their own cozy *
    * Come and Do it! ^ ^**
    *KR 스위트 홈 3D 무료 인테리어 디자인 소프트웨어를 기본 디렉토리 
    또는 부엌의 기본 디렉토리로 가구, 거실, 침실, 욕실, 거실 ... 포함, 여러 
    나라 새겨진 *을 찾을 수있는 디렉토리에서 * 자기 버전 
    (번체 간체 영어, 이탈리아어 호주와 미국 시파) ~ 당신은 자신의 아늑한
    **에 속하는 요새를 구축하기 위해 원하는대로 ~ 와서 마! ^ ^**
    **CN*首页三维地震成本设计软体*自己--
    --揣摸家菜系厨房顾客浴室..
    .荃湾精度包裹时间*一个属于自己的温馨堡垒*
    *安慰来动Hankan澳美西律) - 随你Shogan - 混凝土版!^ ^**
    **FR * Accueil logiciels de design d'intérieur 3D libre douce * auto dans 
     le répertoire par défaut ou l'annuaire pour trouver des meubles, 
    tels que le répertoire par défaut avec une cuisine, salon, chambre
    salle de bains ... inclusive, multi-pays sculpté * Version (traditionnel 
     et simplifié Anglais Italien australien et Sifa US) ~ ~ que vous souhaitez 
    construire une forteresse appartenant à leurs propres *
    * confortables Venez faire! ^ ^**
    *
    EnglishfrançaisportuguêsespañolitalianoDeutschNederlandssvenskačeštinapolski
    magyarΕλληνικάбългарскирусскийTiếng Việt中文 (中国)中文 (台灣)日本語
    * http://www.sweethome3d.com/zh-tw/download.jsp  *


    **Sweet Home 3D 功能
    Sweet Home 3D的提供
    Sweet Home 3D免費室內設計軟體可在--
    -- http://www.sweethome3d.com發現一些主要功能。
    **使用滑鼠或鍵盤輸入尺寸,可以精確繪出直線、
    圓或傾斜的牆壁**
    ****
    **
    將滑鼠按住門窗不放拖拉入牆壁內,
    讓 Sweet Home 3D 計算在牆壁上的開孔,
    使門窗直接排開牆體
    **從預設的目錄或自建目錄中尋找傢俱,
    如預設目錄有廚房、客廳、臥室、浴室...**
    ****
    **
    將牆壁、地板及天花板,
    更改預設的顏色、紋理
    長、寬、高、位置及方向
    **在2D平面圖中設計,同時顯現3D視圖
    可從空中鳥瞰模式的角度來看,或從導航的--
    --虛擬觀視模式的角度來看**
    ****
    **
    標註平面圖上房間的面積、
    尺寸線、文字和一個羅盤的指北方向
    **根據一天當中的時間和地理位置來自定義陽光的--
    --強弱及控制燈光的效果,建立逼真的片或影片**
    ****
    **
    從預設目錄或自建目錄中,
    插入3D模型到您的房子,
    然後再自定義其表面的紋理
    **您可以使用列印和匯出Pdf、點陣圖、向量圖形圖片、
    影片和標準的3D格式檔在您的文件中**
    ****
    **
    使用 Java 程式所寫的外掛程式
    可以擴充Sweet Home 3D 的功能
    或開發其控制器架構模型視圖
    **在Sweet Home 3D使用者---
    ---介面中有23種語言可選擇**
    ****
    **
     Sweet Home 3D  下載執行在--
    --Windows、Mac OS X、Linux--
    --和Solaris下的離線版本,
    或從任何支援Java瀏覽器,
    使用線上版本
    **免費 Sweet Home 3D  軟體,
    分佈在GNU通用公共許可證下,即使是用於商業目的**
    ****
    **Translations included in Sweet Home 3D
    The following translations are directly included in Sweet Home 3D when you install it, and are kept up to date when new features are added to the application.
    EnglishEnglish4.14.1Emmanuel Puybaret, Pencilart
    françaisfrançais4.14.1Emmanuel Puybaret
    portuguêsportuguês4.13.3Roberto Rocha, Lucas Klink, Lucas Germano
    españolespañol4.13.3Pablo Mayordomo, Paco
    italianoitaliano4.12.3Simone Bufalino, Rosella Mariotti, Psycheye, ConsiEdilizia, Alberto Della Salandra
    DeutschDeutsch4.14.1Sebastian Breuer, Thomas Zimmermann, Andreas Kirsch, Florian Haag
    svenskasvenska4.14.1Martin Karlsson
    češtinačeština4.11.2Štefan Novák, Roman Polášek, Ondrej Dolejsi
    polskipolski4.11.2Szymon Życiński, Pawła Antkowiaka, Pawel "Bizkit" Popanda, Szymon Chojnacki
    magyarmagyar4.14.1Miklósi Viktor, Szita Balázs
    ΕλληνικάΕλληνικά4.11.8Έλλη Νικολάου, Ηλία Τσιάντα
    българскибългарски4.14.1Валентин Ласков
    русскийрусский4.11.4Басимов Ильгиз, Валентин Казимиров, Ольге, Юрия Смирнова, Андрей Прищенко, Кунаков Антон Юрьевич
    Tiếng ViệtTiếng Việt4.1-Tuấn Phùng
    中文 (中国)中文 (中国)4.12.3赵斯聪, 方则蘅
    日本語日本語4.12.3Takahiro Sato, Uiko, Vy, Miyoko
    If the user interface of Sweet Home 3D isn't displayed in the language you expected, choose your preferred language in the Language drop down list of the Preferences pane. Under Mac OS X, this pane is displayed by choosing the Preferences item in the Sweet Home 3D menu. Under other systems, it's displayed by choosing the Preferences item in the File menu.

    Other translations supported by Sweet Home 3D

    Each following translation is available once you installed its dedicated SH3L file. To install the SH3L file of your language, click on the matching link in the following table to download it on your computer, then double-click on the downloaded file or choose it with the Import language library file button displayed at the top of the Preferences pane.
    NederlandsNederlands4.14.1Gerwin Harmsen
    中文 (台灣)中文 (台灣)4.14.1李新廠
    suomisuomi4.14.1Jukka Hyytiälä
    SlovenščinaSlovenščina4.14.1Samo Mole
    СрпскиСрпски4.13.4Иван Старчевић, Снежана Лукић
    TürkçeTürkçe4.1-Mücahit Baydar
    한국어한국어3.33.3백호석
    Note to translators: if you want to translate Sweet Home 3D into your language, please read the translation guide.************

    **
    Sweet Home 3D 使用者指南

    簡介

    Sweet Home  3D 是一個免費的室內設計軟體,
    它可將您的傢俱放在 2D 平面圖中, 同時用3D 透視圖閱覽。
    本軟體是針對想要快速設計屋子內部格局,或想要重新設計現有家園,
    或只是想要將傢俱移動調整的人,
    可在http://www.sweethome3d.com/作業,
    無數的教學指南説明您繪製您家,和傢俱佈局在平面圖,
    依照現有平面圖的草圖,或現場丈量尺寸後,可以繪製你家的牆壁,
    然後,從目錄中按傢俱類別拖拉傢俱到該平面圖上,
    在 2D 平面圖中更改,每更改之同時會在 3D 視圖中顯現,
    會展示出房子格局的真實面貌。
    本指南介紹如何在Sweet Home 3D 4.1 中建立一個家,
    描述使用者介面後,您將學習如何繪製您家的牆壁,
    和如何佈置傢俱;在本教學中製作的範例可在http://www.sweethome3d.com/examples/userGuideExample.sh3d
    (3.2 MB)下載。
    有關詳細資訊,您還可查看Sweet Home 3D 影音教學
    或進入Sweet Home 3D視窗後,可以發現工具列上功能表中的説明按鈕再進入Sweet Home 3D 操作手冊,如下圖所示。

    圖 1。Sweet Home 3D 説明

    安裝

    Sweet Home 3D 可以執行在 Windows、 Mac OS X 10.4 至
    10.8、Linux 和 Solaris,有 23 種不同語言的翻譯(台灣是外掛繁體版
    需下載後再從Sweet Home 3D的環境中選擇,檔案>參數設置,
    在此視窗的上面"+"插入taiwan-版本.sh3l的檔案)。
    根據您的系統,請按照以下說明下載Sweet Home 3D 並安裝它:
    Windows:
    下載
    http://sourceforge.net/projects/sweethome3d/files/SweetHome3D/
    SweetHome3D-4.1/SweetHome3D-4.1-windows-oc.exe/download
    (33.7 MB),執行下載安裝程式,並按照安裝精靈中的說明完成。
    Mac OS x:
    下載http://sourceforge.net/projects/sweethome3d/files/SweetHome3D/
    SweetHome3D-4.1/SweetHome3D-4.1-macosx.dmg/download (17.2 MB),
    雙擊下載的檔並找到打開資料夾中的可執行Sweet Home 3D應用程式,
    要安裝Sweet Home 3D,拖拉該應用程式在您選擇的資料夾中。
    Linux:
    下載
    http://sourceforge.net/projects/sweethome3d/files/SweetHome3D
    /SweetHome3D-4.1/SweetHome3D-4.1-linux-x86.tgz/download
    (53.8 MB),
    解壓縮下載的檔並執行SweetHome3D應用程式於未壓縮目錄中,
    要安裝Sweet Home 3D,將未壓縮檔移動到您所選擇的目錄當中。
    您還可以在Sweet Home 3D 線上編輯您的家園,此版本的功能與
    下載版本是相同的,不同之處在於你的家園將儲存於此網站的伺服器上,
    但是首先您將在本網站上註冊.

    使用者介面

    室內設計的主頁中,Sweet Home 3D 視窗編輯說明,
    最上行是功能表選項,次行是工具列圖示,
    而視窗分為可調整的四個窗格,如圖 2 所示。

    Sweet Home 3D panes
    圖 2。Sweet Home 3D 視窗
    您可能會看到你家的頂部在此窗格中,或從虛擬觀視者的角度來往上看。
    !
    每個窗格中可能具有焦點窗格
    (即接收鍵盤輸入),一些操作必需--
    在焦點窗格中作業,矩形周圍彩色可以識別為焦點窗格;例如,
    在圖 2 中平面圖具有焦點窗格在3,要將焦點轉移到另一窗格,
    用Tab 鍵或Shift + Tab 鍵使焦點窗格移動,
    或用滑鼠直接按到此窗格中獲取焦點窗格。
    在平面圖中所做的所有修改都可撤銷/恢復,
    使用點擊工具列中的撤銷和恢復按鈕;不要猶豫,嘗試各種建議的操作。

    開始一個新家

    延續之前,顯示功能選項對話方塊中,如圖 3,顯示Sweet Home 3D >
    功能選項...在 Mac OS X 下的功能表或檔案 > 參數設置
    檢查預設使用單位、 厚度、高度的牆壁,和視窗選項中的參數設置。
    Editing preferences
    圖 3。編輯首選項
    若要製作一個家,只需在Sweet Home 3D 使用--
    啟動時所製作的預設值,
    或點擊工具列中的新家按鈕。
    在Sweet Home 3D 環境內設計,建議步驟:
    1. 以你家作為家庭平面圖的背景圖像,插入掃描的平面草圖
    1. 繁體影音教學
    1. 或使用滑鼠移動方向+Enter來輸入尺寸畫圖,如繁體影音教學
    2. 在此背景圖像中繪描牆壁
    3. 編輯牆體厚度、 顏色和紋理。
    4. 增加門窗到你家平面圖,然後調整它的尺寸,
    1. 以獲得你的空屋有個虛擬3D視圖。
    2. 增加傢俱到你家的平面圖,調整其尺寸和位置,
    1. 也可以插入 3D 模型使用。
    2. 繪製房間後,然後改變地板及天花板的紋理或顏色
    3. 如果您家中有多個樓層、增加樓層和加入樓梯,
    1. 重新啟動前六項步驟,
    1. 並複製到每個樓層再修改。
    2. 您想在文件列印之前,先在平面圖中繪製尺寸增加文字
    在這些步驟中您可能會在 3D 視圖中導航,對您的佈局需要更改角度
    然後取得最好的視角。
    順便一提,不要忘記定期通過點擊儲存按鈕,儲存您的專案,
    Sweet Home 3D 檔可能與其他軟體交換,並且可能包含插入 3D 模型
    不存在的預設目錄(找不到預設目錄);因您會在3D 視圖>照相機的圖片
    產生PNG 格式,或虛擬實境的攝影機影片3D 視圖匯出所產生OBJ +
    MTL 格式,有些軟體會將目錄一併儲存,
    亦既所匯出的檔案會連目錄一併儲存
    ****EnglishfrançaisportuguêsespañolitalianoDeutsch
    NederlandssvenskačeštinapolskimagyarΕλληνικάбългарскирусскийTiếng Việt中文 (中国)中文 (台灣)日本語**
    **
    Sweet Home 3D may run on Windows, Mac OS X 10.4 to 10.8,
    Linux and Solaris.
    Depending on whether Java is installed on you system or not,
     you may launch Sweet Home 3D
    with Java Web Start or its installer.

    Download Sweet Home 3D installer

    If you don't want to care about the Java configuration of
    your system, click on the following link to download
    an all-in-one Sweet Home 3D installer bundled with Java if necessary:
    <B>Download Windows installer</B>
    Once downloaded, run the installation program and follow 
     the instructions from the installation wizard. During the program installation, an offer made by OpenCandy may propose you to install another software. If you're not interested, refuse it or install
    Sweet Home 3D with Java Web Start.
     Ensure that the latest version of the drivers of your video
     card is installed, to get the best performances in Sweet Home 3D.
    If you encounter some problems at Sweet Home 3D launch,
    please read the FAQ for additional information.

    Download Sweet Home 3D with Java Web Start

    If Java version 5 or 6 is installed on your system, click on the following link to download and launch Sweet Home 3D version 4.1 (15.5  MB):
    Launch Sweet Home 3D with Java Web Start
    Under Windows:Clicking on the previous link will automatically
     update the Java version installed on your system
    if required, then will launch Sweet Home 3D loading.
    Under Mac OS X:If Sweet Home 3D loading doesn't start once you
    clicked on the previous link, double-click on
     the SweetHome3D.jnlp downloaded file.
    The Java Web Start version of Sweet Home 3D
    can't run under Mac OS X 10.7 and 10.8 until further notice.
    Under Linux:Choose to open the SweetHome3D.jnlp downloaded file
    with javaws program that you'll find in the bin directory
    of the JRE (Java Runtime Environment).
     If, once started, the download of Sweet Home 3D files by
    Java Web Start is interrupted, please wait, download should
     continue after a while.
    After downloading, please accept the displayed digital
    signature to be able to run Sweet Home 3D.

    Other downloads

    Depending on your needs, you may also download the following files proposed in the Sweet Home 3D Download section on SourceForge.net:
    3D models librariesEach zipped file of the section SweetHome3D-models contains a double-clickable SH3F file describing additional 3D models created by contributors for the furniture catalog of Sweet Home 3D.
    Read Libraries of additional 3D models section for more information.
     
    Furniture Library Editor
    (12.3 MB)
    This double-clickable JAR file launches the Furniture Library Editor under Windows, Mac OS X and Linux systems with Java installed.
    Like the Furniture import wizard, this application lets you quickly create a SH3F file and edit the properties of the 3D models it contains.
     
    Textures Library Editor
    (0.7 MB)
    This double-clickable JAR file launches the Textures Library Editor under any system with Java installed.
    Like the Textures import wizard, this application lets you easily create a SH3T file and edit the properties of the texture images it contains.
     
    Sweet Home 3D viewer(23.8 MB) This archive contains the files of an applet you can upload on your web site to display the 3D view of a Sweet Home 3D file.
    Read the README.TXT file included in this archive for instructions about installation process.
     
    Sweet Home 3D portable(119.4 MB)This 7-zip archive contains Sweet Home 3D applications for Windows 32 bits and 64 bits, Mac OS X, Linux 32 bits and 64 bits, bundled with the Java environments required to execute them.
    Once you uncompressed this archive in a given folder (on a hard disk or a USB key), you can move this folder or the USB key where you copied it to use Sweet Home 3D on another computer, without losing software configuration.
    Sweet Home 3D executable jar(18.8 MB)This double-clickable JAR file launches Sweet Home 3D under Windows, Mac OS X and Linux systems with Java installed.
    It's not the preferred option to run Sweet Home 3D because you won't get association with Sweet Home 3D files, and it will use 96 MB of memory at maximum, which is too small to create middle sized homes. This JAR file is useful for plug-ins developers and advanced users who wants to run Sweet Home 3D with customized Java options (like the -Xmx Java option that lets you choose the maximum memory size used by Java).
    Sweet Home 3D installersThe SweetHome3D section contains the installers of Sweet Home 3D for all the supported operating systems and all the released versions up to the current version 4.1.
     
    Sweet Home 3D source(26.2 MB)This archive contains the source files used to build Sweet Home 3D. Sources are useful to developers who wants to contribute to the development of Sweet Home 3D and its plug-ins.
    Note that source files may be browsed on-line too with the web-based CVS repository viewer provided by SourceForge.net.
     
    Sweet Home 3D javadoc(2.2 MB)This archive contains the developer's javadoc built from the source files of Sweet Home 3D. Javadoc is useful for developers only.
    Note that the javadoc may be browsed on-line here

    **
    Coffee table by LucaPresidenteRound table by Peter SmolikRound table by PencilartWood table by PencilartKitchen table by Icybones
    Coffee tableRound tableRound tableWood tableKitchen table
    Kitchen table by Infernal-quackTable by LucaPresidenteTable by Sleipnir1Black table by GeantickTable by Geantick
    Kitchen tableTableTableBlack tableTable
    Kitchen chair by Infernal-quackChair by LucaPresidenteChair by Sleipnir1Chair by PencilartLattice chair by Pencilart
    Kitchen chairChairChairChairLattice chair
    Orange chair by IcybonesYellow chair by IcybonesBar stool by LucaPresidenteStool by Peter SmolikStool by Geantick
    Orange chairYellow chairBar stoolStoolStool
    Armchair by GdBBlack armchair by GdBChair by Peter SmolikArmchair by Peter Smolik
    ArmchairBlack armchairChairArmchair
    Office chair by Peter SmolikOffice chair by Peter SmolikOffice chair by Peter SmolikDeck chair by GdB
    Office chairOffice chairOffice chairDeck chair
    Armchair by PencilartCouch by PencilartLarge couch by PencilartPillow by Pencilart
    ArmchairCouchLarge couchPillow
    Couch two seats by Theo BlonkSofa by Peter SmolikSofa by Peter SmolikSofa by Peter Smolik
    Couch two seatsSofaSofaSofa
    Small chest by SnducHigh boy dresser by Don RaveyDisplay cabinet by Peter SmolikGlass-door cabinet by GeantickBlack glass- door cabinet by Geantick
    Small chestHigh boy dresserDisplay cabinetGlass-door
    cabinet
    Black glass-
    door cabinet
    Counter by WrosunSideboard by LucaPresidenteDresser by Peter SmolikDresser by GeantickBlack dresser by Geantick
    CounterSideboardDresserDresserBlack dresser
    Bookcase by Peter SmolikCD Rack by Peter SmolikBookcase by Peter SmolikShelving by Peter SmolikStainless steel shelf by N Mi
    BookcaseCD RackBookcaseShelvingStainless steel
    shelf
    Pinewood rack by DingenskirchenPinewood rack by DingenskirchenPinewood rack by DingenskirchenPinewood rack by DingenskirchenWardrobe by Icybones
    Pinewood rackPinewood rackPinewood rackPinewood rackWardrobe
    Bookcase by IcybonesSmall bookshelves by Don RaveyShelves by IcybonesShelves by PencilartShelves by Icybones
    BookcaseSmall bookshelvesShelvesShelvesShelves
    Bookcase by GeantickBookcase by SnducLight switch by PencilartElectric outlet by PencilartDouble electric outlet by Pencilart
    BookcaseBookcaseLight switchElectric outletDouble electric
    outlet

    **       http://www.sweethome3d.com/importModels.jsp      **

    **
    barkbumpy woodcorktrain wagonshuttershutter
    train wagon doortrain wagonplanksplankswood
    woodwoodwoodwoodwood metaldecape
    decapedecapedecapedecapedecapepatina
    wood plankwood plankdecape patinatable woodtable woodoak
    decapedecape

    **  http://telias.free.fr/textures_tex/wood_tex.html                                      *  
    **
    &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&