Back to project page MifareUtility.
The source code is released under:
MIT License
If you think the Android project MifareUtility listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ebr.mifareutility; /*from w ww .j a v a 2 s. c om*/ /** * Created by Edu on 07/11/14. */ public class SectorBlockUtils { public static Integer getAbsoluteBlock(Integer sector, Integer block){ Integer NBLOCKPERSECTOR = 4; return sector*NBLOCKPERSECTOR+block; } }