当前位置:主页   - 电脑 - 程序设计 - JAVA
JavaFX发现之旅(3) JavaFX Script With Eclipse 入门
来源:网络   作者:   更新时间:2012-06-16
收藏此页】    【字号    】    【打印】    【关闭

  JavaFXLabel类支持HTML内容。使用Label您可以使用HTML和CSS创建样式文本和图像,非常类似于典型的Web应用。此外,通过使用JavaFX嵌入表达式,您可以在Swing应用中象Web页面作者使用类似JSTL或Velocity工具一样创建动态的HTML内容。

  考虑以下虚拟购物车示例:

import javafx.ui.*;classItem{       attribute id:String;       attribute productId:String;       attribute description:String;       attribute inStock:Boolean;       attribute quantity:Number;       attribute listPrice:Number;       attribute totalCost:Number;    }     attribute Item.totalCost= bind quantity*listPrice;     classCart{       attribute items: Item*;       attribute subTotal:Number;    }     operation sumItems(itemList:Item*){       var result =0.00;      for(item in itemList){         result += item.totalCost;      }      returnresult;    }     attribute Cart.subTotal= bind sumItems(items);      var cart = Cart{       items:      [Item{         id:"UGLY"         productId:"D100"         description:"BullDog"         inStock:true         quantity:1         listPrice:97.50      },       Item{         id:"BITES"         productId:"D101"         description:"Pit Bull"         inStock:true         quantity:1         listPrice:127.50      }]    };    Frame{       content:Label{         text: bind          "<html>            <h2 align='center'>Shopping Cart</h2>            <table align='center' border='0' bgcolor='#008800' cellspacing='2' cellpadding='5'>              <tr bgcolor='#cccccc'>               <td><b>Item ID</b></td>               <td><b>Product ID</b></td>               <td><b>Description</b></td>               <td><b>In Stock?</b></td>               <td><b>Quantity</b></td>               <td><b>List Price</b></td>               <td><b>Total Cost</b></td>               <td> </td>              </tr>               {               if (sizeof cart.items == 0)               then "<tr bgcolor='#FFFF88'><td colspan='8'><b>Your cart is empty.</b></td></tr>"               else foreach (item in cart.items)                 "<tr bgcolor='#FFFF88'>                  <td>{item.id}</td>                  <td>{item.productId}</td>                  <td>{item.description}</td>                  <td>{ifitem.inStockthen"Yes"else"No"}</td>                  <td>{item.quantity}</td>                  <td align='right'>{item.listPrice}</td>                  <td align='right'>{item.totalCost}</td>                  <td> </td>                  </tr>"              }               <tr bgcolor='#FFFF88'>                 <td colspan='7' align='right'>                  <b>Sub Total: ${cart.subTotal}</b>                </td>                <td> </td>               </tr>             </table>            </html>"        }         visible:true    }

其它资源
来源声明

版权与免责声明
1、本站所发布的文章仅供技术交流参考,本站不主张将其做为决策的依据,浏览者可自愿选择采信与否,本站不对因采信这些信息所产生的任何问题负责。
2、本站部分文章来源于网络,其版权为原权利人所有。由于来源之故,有的文章未能获得作者姓名,署“未知”或“佚名”。对于这些文章,有知悉作者姓名的请告知本站,以便及时署名。如果作者要求删除,我们将予以删除。除此之外本站不再承担其它责任。
3、本站部分文章来源于本站原创,本站拥有所有权利。
4、如对本站发布的信息有异议,请联系我们,经本站确认后,将在三个工作日内做出修改或删除处理。
请参阅权责声明